forked from apache/atlas
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2759 from atlanhq/master
Update beta with master
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Name of the Workflow | ||
name: Charts Values Seed Trigger Dispatcher | ||
on: | ||
workflow_run: | ||
workflows: | ||
- "Java CI with Maven" | ||
branches: | ||
- master | ||
- beta | ||
- staging | ||
types: | ||
- completed | ||
|
||
jobs: | ||
charts-release-dispatcher: | ||
name: Dispatch | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
repo: ['atlanhq/atlan'] | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
# extract branch name | ||
- name: Get branch name | ||
id: extract_branch | ||
run: | | ||
echo "branch=${{ github.event.workflow_run.head_branch }}" >> $GITHUB_OUTPUT | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v2 | ||
with: | ||
token: ${{ secrets.my_pat }} | ||
repository: ${{ matrix.repo }} | ||
event-type: dispatch_chart_release_workflow | ||
client-payload: |- | ||
{ | ||
"repo": { | ||
"name": "${{ github.repository }}", | ||
"branch": "${{ steps.extract_branch.outputs.branch }}" | ||
} | ||
} |