mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
c8d8dcd067
* Automation: Label pull requests based on changed files * Update commands * Updates for build-packaging * fix path to backend architecture docs
26 lines
641 B
YAML
26 lines
641 B
YAML
name: PR automation
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Run Commands
|
|
uses: ./actions/commands
|
|
with:
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|
|
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
|
|
configPath: pr-commands
|