📦 ci(.github): removed redundangt workflows and edited auto comment f… #17
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
# This workflow posts an automated comment on every new issue | ||
# https://github.com/marketplace/actions/create-or-update-comment (https://github.com/peter-evans/create-or-update-comment) | ||
name: Automatic Comment | ||
on: | ||
issues: | ||
types: [opened] | ||
permissions: | ||
contents: read | ||
jobs: | ||
comment: | ||
permissions: | ||
issues: write # create or update comment | ||
pull-requests: write # create or update comment | ||
name: Comment | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Automatic Comment | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
Thanks for the issue, our team will look into it as soon as possible! If you would like to work on this issue, please wait for a maintainer to decide if it is ready to be worked on. | ||
To claim an issue, please leave a comment that says ".take". If you have any questions, feel free to ping a maintainer. | ||
For full info on how to contribute, please check out the [contributors guide](https://github.com/prjctimg/huetiful/blob/main/CONTRIBUTING.md). | ||
##### Quick checklist after creating an issue | ||
- [ ] Link issue to respective project | ||
- [ ] Add appropiate labels to issue | ||
- [ ] Add milestones and link PRs (if any) |