mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 17:06:57 -06:00
36 lines
819 B
YAML
36 lines
819 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 }}
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.draft == false
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v3
|
|
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
|