chore(deps): update grafana/shared-workflows/ action to #1265
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: On PR Creation | |
| on: | |
| pull_request: | |
| jobs: | |
| setup-env-and-cache: | |
| name: Setup Plugin Environment and Cache | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/call_env-setup.yml | |
| auto-label: | |
| name: Auto Label | |
| needs: setup-env-and-cache | |
| permissions: | |
| pull-requests: write | |
| uses: ./.github/workflows/call_auto-label.yml | |
| lint: | |
| needs: setup-env-and-cache | |
| name: Lint | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/call_lint.yml | |
| test: | |
| needs: setup-env-and-cache | |
| name: Integration and unit tests | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/call_integration-tests.yml | |
| grafana-compat: | |
| needs: setup-env-and-cache | |
| name: Grafana API Compatibility Check | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/call_grafana-compat.yml | |
| build-and-typecheck: | |
| needs: setup-env-and-cache | |
| name: Build and typecheck | |
| permissions: | |
| contents: read | |
| attestations: write | |
| uses: ./.github/workflows/call_build-and-typecheck.yml | |
| validate-policy-bot: | |
| needs: setup-env-and-cache | |
| name: Validate Policy Bot | |
| permissions: | |
| contents: read | |
| id-token: write | |
| uses: ./.github/workflows/call_validate-policy-bot.yml | |
| verify-probe-api-mappings: | |
| name: Verify Probe API Server Mappings | |
| needs: setup-env-and-cache | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| uses: ./.github/workflows/call_verify-probe-api-server-mappings.yml | |
| validate-terraform-configuration: | |
| name: Validate Terraform Configuration | |
| needs: setup-env-and-cache | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| uses: ./.github/workflows/call_validate-terraform.yml | |
| danger-js: | |
| name: DangerJS | |
| needs: build-and-typecheck | |
| permissions: | |
| pull-requests: write | |
| attestations: read | |
| contents: read | |
| issues: read | |
| statuses: write | |
| uses: ./.github/workflows/call_dangerJS.yml | |
| renovate-reviewer: | |
| name: Renovate Reviewer | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| uses: ./.github/workflows/call_renovate_reviewer.yml |