Merge pull request #5 from mbaldessari/eso-operator #9
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
# This invokes the workflow named 'publish-charts' in the umbrella repo | |
# It expects to have a secret called CHARTS_REPOS_TOKEN which contains | |
# the GitHub token that has permissions to invoke workflows and commit code | |
# inside the umbrella-repo. | |
# The following fine-grained permissions were used in testing and were limited | |
# to the umbrella repo only: | |
# - Actions: r/w | |
# - Commit statuses: r/w | |
# - Contents: r/w | |
# - Deployments: r/w | |
# - Pages: r/w | |
# | |
name: vp-patterns/update-helm-repo | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
helmlint: | |
uses: validatedpatterns/helm-charts/.github/workflows/helmlint.yml@985ba37e0eb50b1b35ec194fc999eae2d0ae1486 | |
permissions: | |
contents: read | |
update-helm-repo: | |
needs: [helmlint] | |
uses: validatedpatterns/helm-charts/.github/workflows/update-helm-repo.yml@985ba37e0eb50b1b35ec194fc999eae2d0ae1486 | |
permissions: read-all | |
secrets: inherit |