Skip to content

Commit

Permalink
Add GitHub workflow to trigger on release
Browse files Browse the repository at this point in the history
  • Loading branch information
hiletmis committed Jan 10, 2024
1 parent 776c831 commit f96be39
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Trigger on release

on:
push:
branches:
- "moving-chains-to-phase21-organization"
release:
types: [published]
jobs:
Trigger:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Repository Dispatch - Release logos
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: api3dao/logos
event-type: release
- name: Repository Dispatch - Release dapi-management
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: api3dao/dapi-management
event-type: release
- name: Repository Dispatch - Release data-collectors
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: api3dao/data-collectors
event-type: release

0 comments on commit f96be39

Please sign in to comment.