minor github actions yml formatting
This commit is contained in:
parent
b411b92d1c
commit
d032a4f909
8 changed files with 15 additions and 8 deletions
4
.github/workflows/issue_commands.yml
vendored
4
.github/workflows/issue_commands.yml
vendored
|
|
@ -1,9 +1,11 @@
|
||||||
name: Run commands when issues are labeled
|
name: Run commands when issues are labeled
|
||||||
"on":
|
|
||||||
|
on:
|
||||||
issues:
|
issues:
|
||||||
types: [labeled]
|
types: [labeled]
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [labeled]
|
types: [labeled]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
2
.github/workflows/on-issue-creation.yml
vendored
2
.github/workflows/on-issue-creation.yml
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
name: On issue creation
|
name: On issue creation
|
||||||
|
|
||||||
"on":
|
on:
|
||||||
issues:
|
issues:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
name: "Publish Technical Documentation (next)"
|
name: "Publish Technical Documentation (next)"
|
||||||
|
|
||||||
"on":
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "main"
|
- "main"
|
||||||
paths:
|
paths:
|
||||||
- "docs/sources/**"
|
- "docs/sources/**"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: "Publish Technical Documentation (release)"
|
name: "Publish Technical Documentation (release)"
|
||||||
|
|
||||||
"on":
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "release-*"
|
- "release-*"
|
||||||
|
|
@ -9,6 +9,7 @@ name: "Publish Technical Documentation (release)"
|
||||||
paths:
|
paths:
|
||||||
- "docs/sources/**"
|
- "docs/sources/**"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
name: "Triage stale pull requests"
|
name: "Triage stale pull requests"
|
||||||
"on":
|
|
||||||
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "30 1 * * *"
|
- cron: "30 1 * * *"
|
||||||
|
|
||||||
|
|
|
||||||
4
.github/workflows/update-make-docs.yml
vendored
4
.github/workflows/update-make-docs.yml
vendored
|
|
@ -1,8 +1,10 @@
|
||||||
name: Update `make docs` procedure
|
name: Update `make docs` procedure
|
||||||
"on":
|
|
||||||
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 7 * * 1-5"
|
- cron: "0 7 * * 1-5"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
if: github.repository == 'grafana/oncall'
|
if: github.repository == 'grafana/oncall'
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: Verify public documentation updated
|
name: Verify public documentation updated
|
||||||
|
|
||||||
"on":
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
|
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
|
||||||
branches:
|
branches:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: Verify Release Label Added
|
name: Verify Release Label Added
|
||||||
|
|
||||||
"on":
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue