What is the project plan #1147
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Reply dev-quickstart label | |
on: | |
issues: | |
types: | |
- labeled | |
jobs: | |
add-comment: | |
if: github.event.label.name == 'dev-quickstart' | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Reply dev-quickstart label | |
uses: peter-evans/create-or-update-comment@v1 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
If you want to develop this feature, please reply to this issue first and we will assign the task to you. | |
[contributing guide](https://github.com/sealerio/sealer/blob/main/CONTRIBUTING.md) |