fix(contextToLink): filter out labels generated by label_format #4243
Workflow file for this run
This file contains hidden or 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: Plugins Platform - CI / CD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| cd: | |
| name: CI / CD | |
| uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v4.0.0 # ci-cd-workflows/v4.0.0 | |
| permissions: | |
| contents: write | |
| id-token: write | |
| attestations: write | |
| with: | |
| # Checkout/build PR or main branch, depending on event | |
| branch: ${{ github.event_name == 'push' && github.ref_name || github.ref }} | |
| # When pushing to "main", publish and deploy to "dev" and "ops" (CD). For PRs, skip publishing and deploying (run CI only) | |
| environment: ${{ (github.event_name == 'push' && github.ref_name == 'main') && 'dev,ops' || 'none' }} | |
| # Deploy provisioned plugin to Grafana Cloud | |
| grafana-cloud-deployment-type: provisioned | |
| auto-merge-environments: dev,ops | |
| argo-workflow-slack-channel: '#drilldown-cd-alerts-dev-ops' | |
| # Add the git head ref sha to the plugin version as suffix (`+abcdef`). This is required for CD builds. | |
| plugin-version-suffix: ${{ github.event_name == 'push' && github.sha || github.event.pull_request.head.sha }} | |
| # Same settings as publish | |
| run-playwright-with-grafana-dependency: '>=11.6' | |
| upload-playwright-artifacts: true | |
| playwright-docker-compose-file: docker-compose.dev.yaml | |
| playwright-grafana-url: http://localhost:3001/grafana | |
| node-version: '24' |