forked from googleforgames/agones
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a YAML linter to CI, using https://yamllint.readthedocs.io/
- Loading branch information
1 parent
61056b0
commit 130beb1
Showing
85 changed files
with
1,252 additions
and
1,371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
|
@@ -16,13 +17,10 @@ | |
# `main`. `update-pr-branch` will pick the oldest PR (by creation date) that is approved | ||
# with auto-merge enabled and update it to the latest `main`, forming a best-effort queue | ||
# of approved PRs. | ||
|
||
name: PR update | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
branches: [main] | ||
jobs: | ||
autoupdate: | ||
runs-on: ubuntu-latest | ||
|
@@ -31,8 +29,8 @@ jobs: | |
uses: adRise/[email protected] | ||
with: | ||
token: ${{ secrets.AGONES_BOT }} | ||
base: "main" | ||
base: main | ||
required_approval_count: 1 | ||
require_passed_checks: true | ||
sort: "created" | ||
direction: "asc" | ||
sort: created | ||
direction: asc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
# limitations under the License. | ||
|
||
.* | ||
!/.yamllint | ||
!.gitignore | ||
!.helmignore | ||
!.gitattributes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
truthy: disable | ||
line-length: | ||
max: 1500 | ||
|
||
ignore: | ||
- /build/.gomod/ | ||
- /install/ | ||
- /sdks/ | ||
- /test/sdk/ | ||
- /test/terraform/vendor/ | ||
- /site/node_modules/ | ||
- /site/themes/docsy/ | ||
- /site/vendor/ | ||
- /vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.