[Test failure] <TC_LEARNER_6A>: Filter is not showing course mode other than Audit mode #112
This file contains 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: Allows for adding labels when opening a test failure issue. | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
add_label: | |
runs-on: ubuntu-latest | |
if: ${{ contains(github.event.issue.title, 'Test failure') }} | |
steps: | |
- if: ${{ !contains(github.event.issue.labels.*.name, 'needs triage') }} | |
name: Apply label needs triage | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: needs triage | |
- if: ${{ !contains(github.event.issue.labels.*.name, 'release testing') }} | |
name: Apply label release testing | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: release testing |