[docs] Documentation links in README and "About" are not found #122
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 will verify that all issues have at | |
| # least one of the [scope] labels and one of the [priority] labels | |
| name: Verify issue labels | |
| on: | |
| issues: | |
| types: [opened, labeled, unlabeled] | |
| jobs: | |
| check_issue_labels: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Require [scope] label | |
| uses: trstringer/require-label-prefix@v1 | |
| with: | |
| secret: ${{ github.TOKEN }} | |
| prefix: "[scope]" | |
| labelSeparator: " " | |
| addLabel: true | |
| defaultLabel: "[scope] ⚠️ label needed" | |
| - name: Require [priority] label | |
| if: always() | |
| uses: trstringer/require-label-prefix@v1 | |
| with: | |
| secret: ${{ github.TOKEN }} | |
| prefix: "[priority]" | |
| labelSeparator: " " | |
| addLabel: true | |
| defaultLabel: "[priority] ⚠️ label needed" | |