mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-03 00:12:16 +02:00
18 lines
No EOL
402 B
YAML
18 lines
No EOL
402 B
YAML
name: Notify users based on issue labels
|
|
|
|
on:
|
|
issues:
|
|
types: [labeled]
|
|
pull_request:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: jenschelkopf/issue-label-notification-action@1.3
|
|
with:
|
|
recipients: |
|
|
design-review=@Katherine-Osos
|
|
message: 'cc/ {recipients} — adding you to this **{label}** issue!'
|
|
|