fix(tabs): extend tab support to 30 tabs and fix content panel displa… #4641
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: Assign Request Reminder | |
| on: | |
| issue_comment: | |
| types: [created] | |
| concurrency: | |
| group: assign-reminder-${{ github.event.issue.number }}-${{ github.event.comment.id }} | |
| cancel-in-progress: false | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| remind-claim: | |
| name: Remind About /claim Command | |
| runs-on: ubuntu-latest | |
| if: >- | |
| !github.event.issue.pull_request && | |
| github.event.comment.user.type != 'Bot' && | |
| ( | |
| contains(github.event.comment.body, 'assign') || | |
| contains(github.event.comment.body, 'work') || | |
| contains(github.event.comment.body, 'take') || | |
| contains(github.event.comment.body, 'contribute') || | |
| contains(github.event.comment.body, 'interested') | |
| ) | |
| steps: | |
| # We must checkout the repo to access our external JS script | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Post /claim Reminder | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| // Require and execute the external module | |
| const issueReminder = require('./.github/scripts/issueReminder.js'); | |
| await issueReminder({ github, context }); |