Workflow file for this run
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
--- | |
name: Trigger Downstream Helm Chart Release | |
"on": | |
# As soon as this repo creates an official release, we will | |
# create a corresponding release in the helm chart repo | |
release: | |
types: [released] | |
permissions: {} | |
jobs: | |
create_helm_release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create prefect-helm release | |
run: | | |
gh workflow run prometheus-exporter-helm-release.yaml \ | |
--repo PrefectHQ/prefect-helm \ | |
--ref main | |
env: | |
GH_TOKEN: ${{ secrets.PREFECT_HELM_ACTIONS_RW }} |