Skip to content

Commit 9af2314

Browse files
authored
CLOUDP-84607: Add trigger for helm charts (#792)
1 parent 89cbfcd commit 9af2314

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/release-post-merge.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ jobs:
4545
echo "version=$version" >> $GITHUB_OUTPUT
4646
echo "tag=$tag" >> $GITHUB_OUTPUT
4747
48+
- name: Trigger helm post release workflow
49+
run: |
50+
curl \
51+
-X POST \
52+
-H "Accept: application/vnd.github+json" \
53+
-H "Authorization: Bearer ${{ secrets.HELM_REPO_TOKEN }}"\
54+
-H "X-GitHub-Api-Version: 2022-11-28" \
55+
https://api.github.com/repos/mongodb/helm-charts/actions/workflows/post-atlas-operator-release.yaml/dispatches \
56+
-d '{"ref":"main","inputs":{"version":"'"${{ steps.tag.outputs.version }}"'"}}'
57+
4858
- name: Check out code into the Go module directory
4959
uses: actions/checkout@v3.1.0
5060
with:

0 commit comments

Comments
 (0)