feat(autoskills): detect Xquik SDK projects #147
This file contains hidden or 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: Issue response labels | |
| on: | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| issues: write | |
| jobs: | |
| update-labels: | |
| if: >- | |
| !github.event.issue.pull_request && | |
| github.event.comment.user.login == github.event.issue.user.login && | |
| contains(github.event.issue.labels.*.name, 'waiting response') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Remove "waiting response" and add "more info provided" | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh issue edit ${{ github.event.issue.number }} \ | |
| --repo ${{ github.repository }} \ | |
| --remove-label "waiting response" \ | |
| --add-label "more info provided" |