2021-12-03 14:39:15 -05:00
|
|
|
name: Notify users based on issue labels
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [labeled]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
notify:
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-27 13:56:35 -05:00
|
|
|
permissions:
|
|
|
|
issues: write
|
2021-12-03 14:39:15 -05:00
|
|
|
steps:
|
2023-01-27 13:56:35 -05:00
|
|
|
- uses: tekktrik/issue-labeled-ping@v1
|
2021-12-03 14:39:15 -05:00
|
|
|
with:
|
2023-01-27 13:56:35 -05:00
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
user: v923z
|
|
|
|
label: ulab
|
|
|
|
message: Heads up {user} - the "{label}" label was applied to this issue.
|