DEV-43349 Grafana upgrade leftovers and fixes::Fix shapshots url in App #93
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: PR Checks | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
- labeled | |
- unlabeled | |
- edited | |
issues: | |
types: | |
- milestoned | |
- demilestoned | |
concurrency: | |
group: pr-checks-${{ github.event.number }} | |
permissions: | |
statuses: write | |
checks: write | |
actions: write | |
contents: read | |
pull-requests: read | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Checkout Actions | |
uses: actions/checkout@v4 | |
with: | |
repository: "grafana/grafana-github-actions" | |
path: ./actions | |
ref: main | |
- name: Install Actions | |
run: npm install --production --prefix ./actions | |
- name: Run PR Checks | |
uses: ./actions/pr-checks | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
configPath: pr-checks |