Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linting: modify yaml files to satisfy yamllint #38144

Merged
merged 2 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
change yaml style to follow GHA style
  • Loading branch information
SubaruArai committed Aug 16, 2023
commit f287b1a405cb111d113f83c9651dc59a44fc2ab8
3 changes: 2 additions & 1 deletion .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: Validate rosdistro
"on":
# this is fine since gha runs with yaml 1.2
on: # yamllint disable-line rule:truthy
push:
branches: ['master']
pull_request:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: "Pull Request Labeler"
"on":
# this is fine since gha runs with yaml 1.2
on: # yamllint disable-line rule:truthy
- pull_request_target

permissions:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/stale_labeler.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
name: 'Label inactive PRs as stale'

"on":
# this is fine since gha runs with yaml 1.2
on: # yamllint disable-line rule:truthy
schedule:
- cron: '0 11 * * *' # runs at 11am UTC every day => early morning in US

Expand Down
Loading