CI: Run e2e tests against two Grafana versions #7008
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: 'Check PR labels' | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
- edited | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }} | |
permissions: | |
pull-requests: write | |
jobs: | |
check-labels: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
cache-dependency-path: ./.github/actions/check-labels/package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
working-directory: ./.github/actions/check-labels | |
- name: Check labels | |
uses: ./.github/actions/check-labels |