Interactive Flow Message #21
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: Auto Comment on New Issue Label | |
# This workflow is triggered when a label is added to an issue. | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
processLabelAction: | |
name: Process Label Action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Process Label Action | |
uses: hramos/respond-to-issue-based-on-label@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
configuration-path: ".github/label-actions.yml" |