Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Notify fidesdemo on new releases #1075

Merged
merged 3 commits into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/release_event.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Release Dispatch Event
name: Notify Downstream Projects of Release

on:
release:
types: [released]

jobs:
Notify-of-New-Release:
fidesops-plus:
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
Expand All @@ -15,3 +15,14 @@ jobs:
repository: ethyca/fidesops-plus
event-type: new-fidesops-release
client-payload: '{"tag": "${{ github.event.release.tag_name }}", "url": "${{ github.event.release.html_url }}"}'

fidesdemo:
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
repository: ethyca/fidesdemo
event-type: new-fidesops-release
client-payload: '{"tag": "${{ github.event.release.tag_name }}", "url": "${{ github.event.release.html_url }}"}'
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ The types of changes are:
* Access support for Datadog Logs [#1060](https://github.com/ethyca/fidesops/pull/1060)
* Access and erasure support for Logi ID [#1074](https://github.com/ethyca/fidesops/pull/1074)

### Developer Experience

* When releases are published, dispatch a repository webhook event to ethyca/fidesdemo [#1075](https://github.com/ethyca/fidesops/pull/1075)

### Fixed

* HTTP headers are now preserved in requests generated from SaaS connector pagination [#1069](https://github.com/ethyca/fidesops/pull/1069)
Expand Down