Merge pull request #1 from cloudnative-pg/cluster-dashboard #1
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: release-publish | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'charts/cluster/grafana-dashboard.json' | |
jobs: | |
release: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 # important for fetching all history to run comparison against | |
- name: Push dashboard to Grafana.com | |
env: | |
DASHBOARD_ID: 20417 | |
GRAFANA_COM_TOKEN: ${{secrets.GRAFANA_COM_TOKEN}} | |
run: | | |
cat charts/cluster/grafana-dashboard.json | curl -X PATCH -H "Content-Type: application/json" -H "Authorization: Bearer $GRAFANA_COM_TOKEN" --data-binary @- https://grafana.com/api/dashboards/db |