fix(templates): Update dependency @grafana/plugin-e2e to v3.11.0 #245
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: Check release-please config | |
| on: | |
| pull_request: | |
| paths: | |
| - 'packages/**' | |
| - 'release-please-config.json' | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Verify release-please config covers every package | |
| run: | | |
| set -euo pipefail | |
| declared=$(jq -r '.packages | keys[]' release-please-config.json | sort) | |
| actual=$(find packages -mindepth 1 -maxdepth 1 -type d | sort) | |
| diff <(echo "$declared") <(echo "$actual") || { | |
| echo "release-please-config.json is out of sync with packages/ directory" >&2 | |
| exit 1 | |
| } |