Update Dashboard ConfigMaps #247
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: Update Dashboard ConfigMaps | |
on: | |
schedule: | |
- cron: '0 6 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Update Dashboard ConfigMaps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
path: hco | |
- name: Checkout monitoring repository | |
uses: actions/checkout@v4 | |
with: | |
repository: kubevirt/monitoring | |
ref: main | |
path: monitoring | |
- name: Check for update | |
run: | | |
./hco/automation/dashboard-updater/dashboard-updater.sh "./monitoring/dashboards/openshift" "./hco/assets/dashboards" | |
cd hco | |
git add --all | |
if ! git diff HEAD --quiet --exit-code; then | |
echo "There is an update." | |
echo "UPDATED=true" >> $GITHUB_ENV | |
fi | |
- name: Create a PR | |
uses: peter-evans/create-pull-request@v6 | |
if: ${{ env.UPDATED }} | |
with: | |
path: hco | |
token: ${{ secrets.HCO_BOT_TOKEN }} | |
commit-message: | | |
Update configmaps of dashboards | |
Signed-off-by: HCO Bump Bot <[email protected]> | |
committer: HCO Bump Bot <[email protected]> | |
title: "Update configmaps of dashboards" | |
body: | | |
Update configmaps of dashboards | |
```release-note | |
Update configmaps of dashboards | |
``` | |
assignees: srdaco | |
reviewers: sradco | |
team-reviewers: owners, maintainers | |
branch: update_dashboard_configmaps | |
delete-branch: true |