Skip to content

Commit

Permalink
minor github actions yml formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyorlando committed Jun 13, 2024
1 parent b411b92 commit d032a4f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/issue_commands.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Run commands when issues are labeled
"on":

on:
issues:
types: [labeled]
pull_request:
types: [labeled]

jobs:
main:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-issue-creation.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: On issue creation

"on":
on:
issues:
types:
- opened
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-technical-documentation-next.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: "Publish Technical Documentation (next)"

"on":
on:
push:
branches:
- "main"
paths:
- "docs/sources/**"
workflow_dispatch:

jobs:
test:
runs-on: "ubuntu-latest"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Publish Technical Documentation (release)"

"on":
on:
push:
branches:
- "release-*"
Expand All @@ -9,6 +9,7 @@ name: "Publish Technical Documentation (release)"
paths:
- "docs/sources/**"
workflow_dispatch:

jobs:
test:
runs-on: "ubuntu-latest"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/triage-stale-pull-requests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: "Triage stale pull requests"
"on":

on:
schedule:
- cron: "30 1 * * *"

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/update-make-docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Update `make docs` procedure
"on":

on:
schedule:
- cron: "0 7 * * 1-5"
workflow_dispatch:

jobs:
main:
if: github.repository == 'grafana/oncall'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-public-docs-updated.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Verify public documentation updated

"on":
on:
pull_request:
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-release-label-added.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Verify Release Label Added

"on":
on:
pull_request:
types:
- opened
Expand Down

0 comments on commit d032a4f

Please sign in to comment.