[Studio>Course>Section Duplicate] [TC_AUTHOR_26] - Staff user is unable to duplicate a section. #56
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 the 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') && !contains(github.event.issue.labels.*.name, 'needs triage') }} | |
steps: | |
- name: apply needs triage label | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: needs triage |