[ci] Correct nightly release to use latest code from main branch #178
Workflow file for this run
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: Add Labels | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
types: [opened] | |
# Cancel CI workflows which are still running from previous pushes | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
add_labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add labels | |
uses: andymckay/labeler@master | |
with: | |
add-labels: "org:triage" | |
ignore-if-labeled: true |