mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
5ea16cb947
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
925 B
YAML
45 lines
925 B
YAML
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
|