You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
764 B
19 lines
764 B
name: Good frist issue add comment
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
jobs:
|
|
add-comment:
|
|
if: github.event.label.name == 'help-wanted' || github.event.label.name == 'good-first-issue'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Add comment
|
|
uses: peter-evans/create-or-update-comment@5f728c3dae25f329afbe34ee4d08eef25569d79f
|
|
with:
|
|
issue-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:
|
|
If you wish to accept this assignment, please leave a comment in the comments section: `/accept`.🎯 |