[Feature Request]: Ability to Filter Secure Score on only Recommendations that are not 100% #2023
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: Label Issues | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| jobs: | |
| label_issues_bugs: | |
| if: github.repository_owner == 'KelvinTegelaar' && contains(github.event.issue.title, 'Bug') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Label Issues | |
| uses: andymckay/labeler@5c59dabdfd4dd5bd9c6e6d255b01b9d764af4414 | |
| with: | |
| add-labels: 'not-assigned' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| label_issues_frs: | |
| if: github.repository_owner == 'KelvinTegelaar' && contains(github.event.issue.title, 'Feature') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Label Issues | |
| uses: andymckay/labeler@5c59dabdfd4dd5bd9c6e6d255b01b9d764af4414 | |
| with: | |
| add-labels: 'enhancement, not-assigned' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |