Skip to content

Commit

Permalink
Create ll.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinKirs authored Dec 28, 2023
1 parent 151ea3c commit 5b7e8b5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Add comment
on:
issues:
jobs:
add-comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add comment
run: gh issue comment "$NUMBER" --body "$BODY"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
BODY: >
This issue is available for anyone to work on.
**Make sure to reference this issue in your pull request.**
:sparkles: Thank you for your contribution! :sparkles:

0 comments on commit 5b7e8b5

Please sign in to comment.