-
Notifications
You must be signed in to change notification settings - Fork 74
39 lines (35 loc) · 1.31 KB
/
release_event.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Notify Downstream Projects of Release
on:
release:
types: [released]
jobs:
fidesplus:
runs-on: ubuntu-latest
steps:
- name: Send Repository Dispatch Event
uses: peter-evans/repository-dispatch@v2
with:
client-payload: '{"tag": "${{ github.event.release.tag_name }}", "url": "${{ github.event.release.html_url }}"}'
event-type: new-fides-release
repository: ethyca/fidesplus
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
fidesdocs:
runs-on: ubuntu-latest
steps:
- name: Send Repository Dispatch Event
uses: peter-evans/repository-dispatch@v2
with:
client-payload: '{"tag": "${{ github.event.release.tag_name }}", "url": "${{ github.event.release.html_url }}"}'
event-type: new-fides-release
repository: ethyca/fidesdocs
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
fides-helm:
runs-on: ubuntu-latest
steps:
- name: Send Repository Dispatch Event
uses: peter-evans/repository-dispatch@v2
with:
client-payload: '{"tag": "${{ github.event.release.tag_name }}", "url": "${{ github.event.release.html_url }}"}'
event-type: new-fides-release
repository: ethyca/fides-helm
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}