Orchestrator-k8s - orchestrator plugins #113
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: Orchestrator-k8s - orchestrator plugins | |
on: | |
workflow_dispatch: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# nighly schedule at 00:05 | |
- cron: '5 0 * * *' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Orchestrator Plugins Versions | |
run: | | |
#!/bin/bash | |
charts/orchestrator-k8s/hack/update_plugins_version.sh | |
# TODO create pr if changed | |
git diff charts/orchestrator-k8s/values.yaml |