fix: GitHub URL parsing and file extension detection for issue #1940 #5250
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
| # This workflow is centrally managed at https://github.com/asyncapi/.github/ | |
| # Don't make changes to this file in this repository, as they will be overwritten with | |
| # changes made to the same file in the abovementioned repository. | |
| # The purpose of this workflow is to allow Bounty Team members | |
| # (https://github.com/orgs/asyncapi/teams/bounty_team) to issue commands to the | |
| # organization's global AsyncAPI bot related to the Bounty Program, while at the | |
| # same time preventing unauthorized users from misusing them. | |
| name: Bounty Program commands | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| env: | |
| BOUNTY_PROGRAM_LABELS_JSON: | | |
| [ | |
| {"name": "bounty", "color": "0e8a16", "description": "Participation in the Bounty Program"} | |
| ] | |
| permissions: {} | |
| jobs: | |
| guard-against-unauthorized-use: | |
| name: Guard against unauthorized use | |
| permissions: | |
| issues: write # required to post a comment on the issue/PR | |
| pull-requests: write # required to post a comment on the issue/PR if it's a PR | |
| if: > | |
| !contains(fromJSON('["aeworxet","thulieblack"]'), github.actor) && | |
| ( | |
| startsWith(github.event.comment.body, '/bounty' ) | |
| ) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ❌ @${{github.actor}} made an unauthorized attempt to use a Bounty Program's command | |
| uses: actions/github-script@v7 | |
| env: | |
| ACTOR: ${{ github.actor }} | |
| with: | |
| github-token: ${{ github.token }} | |
| script: | | |
| const commentText = `❌ @${process.env.ACTOR} is not authorized to use the Bounty Program's commands. | |
| These commands can only be used by members of the [Bounty Team](https://github.com/orgs/asyncapi/teams/bounty_team).`; | |
| console.log(`❌ @${process.env.ACTOR} made an unauthorized attempt to use a Bounty Program's command.`); | |
| github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: commentText | |
| }) | |
| add-label-bounty: | |
| name: Add bounty label | |
| permissions: | |
| issues: write # required to read/create labels and add labels on the issue/PR | |
| pull-requests: write # required to read/create labels and add labels on the issue/PR | |
| if: > | |
| contains(fromJSON('["aeworxet","thulieblack"]'), github.actor) && | |
| ( | |
| startsWith(github.event.comment.body, '/bounty' ) | |
| ) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add label `bounty` | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ github.token }} | |
| script: | | |
| const BOUNTY_PROGRAM_LABELS = JSON.parse(process.env.BOUNTY_PROGRAM_LABELS_JSON); | |
| let LIST_OF_LABELS_FOR_REPO = await github.rest.issues.listLabelsForRepo({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| }); | |
| LIST_OF_LABELS_FOR_REPO = LIST_OF_LABELS_FOR_REPO.data.map(key => key.name); | |
| if (!LIST_OF_LABELS_FOR_REPO.includes(BOUNTY_PROGRAM_LABELS[0].name)) { | |
| await github.rest.issues.createLabel({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| name: BOUNTY_PROGRAM_LABELS[0].name, | |
| color: BOUNTY_PROGRAM_LABELS[0].color, | |
| description: BOUNTY_PROGRAM_LABELS[0].description | |
| }); | |
| } | |
| console.log('Adding label `bounty`...'); | |
| github.rest.issues.addLabels({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| labels: [BOUNTY_PROGRAM_LABELS[0].name] | |
| }) | |
| remove-label-bounty: | |
| name: Remove bounty label | |
| permissions: | |
| issues: write # required to read/remove labels on the issue/PR | |
| pull-requests: write # required to read/remove labels on the issue/PR if it's a PR | |
| if: > | |
| contains(fromJSON('["aeworxet","thulieblack"]'), github.actor) && | |
| ( | |
| startsWith(github.event.comment.body, '/unbounty' ) | |
| ) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Remove label `bounty` | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ github.token }} | |
| script: | | |
| const BOUNTY_PROGRAM_LABELS = JSON.parse(process.env.BOUNTY_PROGRAM_LABELS_JSON); | |
| let LIST_OF_LABELS_FOR_ISSUE = await github.rest.issues.listLabelsOnIssue({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| }); | |
| LIST_OF_LABELS_FOR_ISSUE = LIST_OF_LABELS_FOR_ISSUE.data.map(key => key.name); | |
| if (LIST_OF_LABELS_FOR_ISSUE.includes(BOUNTY_PROGRAM_LABELS[0].name)) { | |
| console.log('Removing label `bounty`...'); | |
| github.rest.issues.removeLabel({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| name: [BOUNTY_PROGRAM_LABELS[0].name] | |
| }) | |
| } |