fix(tabs): extend tab support to 30 tabs and fix content panel displa… #4638
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 Commands Handler | |
| on: | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| handle-commands: | |
| runs-on: ubuntu-latest | |
| if: >- | |
| !github.event.issue.pull_request && | |
| github.event.comment.user.type != 'Bot' | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Handle /claim | |
| if: startsWith(github.event.comment.body, '/claim') | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| const { handleClaim } = require('./.github/scripts/autoClaimHandle.js'); | |
| await handleClaim({ github, context }); | |
| - name: Handle /unclaim | |
| if: startsWith(github.event.comment.body, '/unclaim') | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| const { handleUnclaim } = require('./.github/scripts/autoUnclaimHandler.js'); | |
| await handleUnclaim({ github, context }); |