applications: retry on 409 after creating application #2994
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 Comment Created Triage | |
| on: | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| remove-stale: | |
| uses: ./.github/workflows/remove-issue-label.yaml | |
| with: | |
| label-name: "stale" | |
| remove-waiting-response-from-issue: | |
| uses: ./.github/workflows/remove-issue-label.yaml | |
| if: ${{ !github.event.issue.pull_request }} | |
| with: | |
| label-name: "waiting-response" | |
| remove-waiting-response-from-pr: | |
| uses: ./.github/workflows/remove-issue-label.yaml | |
| if: (github.event.issue.pull_request && github.actor == github.event.issue.user.login) | |
| with: | |
| label-name: "waiting-response" | |
| pull_request_comment: | |
| runs-on: ubuntu-latest | |
| if: github.event.issue.pull_request && endsWith(github.event.comment.body, '/wr') | |
| steps: | |
| - uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 | |
| with: | |
| script: | | |
| github.rest.issues.addLabels({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| labels: ["waiting-response"] | |
| }) |