Update push_events_to_discord.yml
This commit is contained in:
parent
ce5ecfcf84
commit
8b2c9486da
1 changed files with 13 additions and 1 deletions
14
.github/workflows/push_events_to_discord.yml
vendored
14
.github/workflows/push_events_to_discord.yml
vendored
|
@ -4,13 +4,25 @@ on:
|
|||
issues:
|
||||
types:
|
||||
- opened
|
||||
issue_comment:
|
||||
types:
|
||||
- created
|
||||
|
||||
jobs:
|
||||
push-events:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: App Request Events
|
||||
|
||||
- name: App Request Issues
|
||||
if: ${{ github.event_name == 'issues' && github.event.action == 'opened' && contains(github.event.issue.labels.*.name, 'App Request')}}
|
||||
uses: joseph-montanez/forward-event-action@v3.0.0
|
||||
with:
|
||||
webhook: ${{ secrets.Discord_CasaOS_App_Request_Webhook }}
|
||||
|
||||
- name: App Request Issue Comments
|
||||
if: ${{ github.event_name == 'issue_comment' && github.event.action == 'created' && contains(github.event.issue.labels.*.name, 'App Request')}}
|
||||
uses: joseph-montanez/forward-event-action@v3.0.0
|
||||
with:
|
||||
webhook: ${{ secrets.Discord_CasaOS_App_Request_Webhook }}
|
||||
|
|
Loading…
Reference in a new issue