Skip to content

Commit

Permalink
* adding a new issue greeter workflow, which adds a comment to all newly
Browse files Browse the repository at this point in the history
  created issues
  • Loading branch information
netllama committed Mar 7, 2025
1 parent 03a533a commit 12f88f3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/greeter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: New issue greeter

on:
issues:
types: [opened]

jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "🎉 thanks for submitting this issue, we'll review it soon!"
})

0 comments on commit 12f88f3

Please sign in to comment.