github.com/sealerio/sealer@v0.11.1-0.20240507115618-f4f89c5853ae/.github/workflows/auto-comment.yml (about) 1 name: Reply dev-quickstart label 2 on: 3 issues: 4 types: 5 - labeled 6 jobs: 7 add-comment: 8 if: github.event.label.name == 'dev-quickstart' 9 runs-on: ubuntu-latest 10 permissions: 11 issues: write 12 steps: 13 - name: Reply dev-quickstart label 14 uses: peter-evans/create-or-update-comment@v1 15 with: 16 issue-number: ${{ github.event.issue.number }} 17 body: | 18 If you want to develop this feature, please reply to this issue first and we will assign the task to you. 19 20 [contributing guide](https://github.com/sealerio/sealer/blob/main/CONTRIBUTING.md)