Disambiguation produces duplicate module names #26
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: Triage Issue | |
# Ensures that all opened issues are initially given the 'T-new' label | |
# unless one of the other triage labels is present. | |
on: | |
issues: | |
types: opened | |
jobs: | |
add_label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ | |
!contains(github.event.issue.labels.*.name, 'T-accepted') && | |
!contains(github.event.issue.labels.*.name, 'T-rejected') }} | |
with: | |
labels: T-new |