Update jsonnet dependencies in cluster-monitoring-operator #185
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 jsonnet dependencies in cluster-monitoring-operator | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 1' #@weekly | |
jobs: | |
jsonnet-update: | |
uses: ./.github/workflows/cmo-make-targets.yaml | |
with: | |
make-targets: update generate | |
pr-title: "[bot] Update jsonnet dependencies" | |
pr-body: | | |
## Description | |
This pull request updates all jsonnet dependencies listed in `jsonnet/jsonnetfile.json` to their latest versions and regenerates all assets. | |
If you wish to perform this manually, execute the following commands from the cluster-monitoring-operator repository: | |
``` | |
make update | |
make generate | |
``` | |
secrets: | |
pr-app-id: ${{ secrets.APP_ID }} | |
pr-app-private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
cloner-app-id: ${{ secrets.CLONER_APP_ID }} | |
cloner-app-private-key: ${{ secrets.CLONER_APP_PRIVATE_KEY }} | |
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} |