Datarepo umbrella chart update #772
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: Release chart Datarepo chart | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- master | |
paths: | |
- '!charts/**' | |
- '!.github/**' | |
- '!README.md' | |
- 'charts/datarepo/**' | |
jobs: | |
release_new_umbrella_dr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: true | |
token: ${{ secrets.BROADBOT_TOKEN }} | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
release_umbrella_helm_charts: | |
needs: release_new_umbrella_dr | |
uses: ./.github/workflows/chart-releaser.yaml | |
secrets: inherit | |
integration_chart_promotion: | |
needs: release_new_umbrella_dr | |
uses: ./.github/workflows/integrationChartBump.yaml | |
secrets: inherit | |
notify_slack: | |
needs: | |
- release_new_umbrella_dr | |
- release_umbrella_helm_charts | |
- integration_chart_promotion | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- name: "Notify Slack" | |
uses: broadinstitute/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
MATRIX_CONTEXT: ${{ toJson(matrix) }} # required to work with job field | |
with: | |
status: ${{ contains(needs.*.result, 'failure') && 'failure' || 'success' }} | |
fields: job,repo,message | |
channel: "#jade-spam" | |
username: "datarepo-helm actions" | |
text: "Release Datarepo Chart" |