Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notify fidesctl-plus and fidesops-plus on new releases #1263

Merged
merged 2 commits into from
Oct 12, 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
22 changes: 16 additions & 6 deletions .github/workflows/release_event.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
name: Release Dispatch Event
name: Notify Downstream Projects of Release

on:
release:
types: [released]

jobs:
Notify-of-New-Release:
fidesctl-plus:
runs-on: ubuntu-latest
steps:

- name: Repository Dispatch
- name: Send Repository Dispatch Event
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
repository: ethyca/fidesplus
client-payload: '{"tag": "${{ github.event.release.tag_name }}", "url": "${{ github.event.release.html_url }}"}'
event-type: new-fides-release
repository: ethyca/fidesctl-plus
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}

fidesops-plus:
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/fidesops-plus
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ The types of changes are:
* `Fixed` for any bug fixes.
* `Security` in case of vulnerabilities.

## [Unreleased](https://github.com/ethyca/fides/compare/1.9.2...main)

### Developer Experience

* Repository dispatch events are sent to fidesctl-plus and fidesops-plus [#1263](https://github.com/ethyca/fides/pull/1263)

## [1.9.2](https://github.com/ethyca/fides/compare/1.9.2...main)

### Deprecated
Expand Down