Add nodeSelector, affinity, and toleration fields for pre-upgrade-job… #192
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: Bump Changed Charts' Versions | |
on: | |
pull_request: | |
types: | |
- opened | |
workflow_dispatch: | |
jobs: | |
chart-version-checker: | |
strategy: | |
matrix: | |
charts: | |
- hello-toy | |
- httpbin | |
- reflect | |
- ziti-controller | |
- ziti-edge-tunnel | |
- ziti-host | |
- ziti-router | |
- zrok | |
- ziti-browzer-bootstrapper | |
runs-on: ubuntu-latest | |
steps: | |
- name: Bump Chart Versions if Changed | |
id: bumper | |
uses: netfoundry/chart-version-bumper-action@main | |
with: | |
chart_dir: ./charts/${{ matrix.charts }} | |
# grant write permission to GITHUB_TOKEN for version bumper to push commits to current branch | |
permissions: | |
contents: write |