mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
c8514756be
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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...v3) --- 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>
27 lines
759 B
YAML
27 lines
759 B
YAML
name: Run commands when issues are labeled or comments added
|
|
on:
|
|
issues:
|
|
types: [labeled, unlabeled]
|
|
issue_comment:
|
|
types: [created]
|
|
concurrency:
|
|
group: issue-commands-${{ github.event.issue.number }}
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
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 Commands
|
|
uses: ./actions/commands
|
|
with:
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|
|
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
|
|
configPath: commands
|