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

update auto-assign-github-action to be synced with master so it can be closed after that. #79

Merged
merged 3 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
72 changes: 48 additions & 24 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,57 @@
# Add 'source' label to any change to src files within the source dir EXCEPT for the docs sub-folder
source:

Check failure on line 1 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- any: [src/DogApparel, src/docs/DogApparel]

# Add 'documentation' label to any root file changes, README, CHANGELOG, etc
any:
- src/DogApparel
- src/docs/DogApparel
documentation:

Check failure on line 5 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- any: [README.md, CHANGELOG.md, LICENSE, Wiki.md]

# Add the XML label to any XML files within the repository
any:

Check failure on line 6 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(key-duplicates)

[new] duplication of key "any" in mapping
- README.md
- CHANGELOG.md
- CHANGELOG.TXT
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE
- SUPPORT.md
- Wiki.md
XML:

Check failure on line 15 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- [DogApparel/1.4/Defs/*.xml]

any:

Check failure on line 16 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(key-duplicates)

[new] duplication of key "any" in mapping
- DogApparel/1.4/Defs/*.xml
- DogApparel/patches/Defs/*.xml
- DogApparel/About/About.xml
- DogApparel/LoadFolders.xml
configuration:

Check failure on line 21 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- .github/*yml
- .gitignore
- .gitattributes
- .vscode/*
- .devcontainer/*
- .editorconfig
- yamllint.yml
any:

Check failure on line 22 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(key-duplicates)

[new] duplication of key "any" in mapping
- .github/*yml
- .gitignore
- .gitattributes
- .vscode/*
- .devcontainer/*
- .editorconfig
- yamllint.yml
- .trunk/configs
- DogApparel/.trunk/trunk.yaml
images:

Check failure on line 32 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- public/**/*.{ico,svg,jpg,jpeg,png,gif}
any:

Check failure on line 33 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(key-duplicates)

[new] duplication of key "any" in mapping
- 'public/**/*.{ico,svg,jpg,jpeg,png,gif}'
- Textures/DogApparel/Things/Pawn/Animal/Body/*png
- Textures/DogApparel/Things/Pawn/Animal/Head/*png
- Textures/DogApparel/Things/Pawn/Humanlike/Body/*png
- Textures/DogApparel/Things/Pawn/Humanlike/Head/*png
github:

Check failure on line 39 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- any: [.github/*, .github/workflows/]
any:

Check failure on line 40 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(key-duplicates)

[new] duplication of key "any" in mapping
- .github/*
- .github/workflows/*
github_actions:

Check failure on line 43 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- .github/workflows/*
any:

Check failure on line 44 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(key-duplicates)

[new] duplication of key "any" in mapping
- .github/workflows/*.yml
- .github/workflows/*.yaml
policy:

Check failure on line 47 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(empty-values)

[new] empty value in block mapping
- .github/ISSUE_TEMPLATE/*
- .github/PULL_TEMPLATE/*
- LICENSE
- SECURITY.md
any:

Check failure on line 48 in .github/labeler.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(key-duplicates)

[new] duplication of key "any" in mapping
- .github/ISSUE_TEMPLATE/*
- .github/PULL_TEMPLATE/*
- LICENSE
- SECURITY.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- SUPPORT.md
vscode:
- .vscode/*
- .vscode/*
2 changes: 1 addition & 1 deletion .github/workflows/cache_trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
name: Cache Trunk
runs-on: ubuntu-latest
permissions:
actions: write
actions: read-only

Check failure on line 13 in .github/workflows/cache_trunk.yml

View workflow job for this annotation

GitHub Actions / Trunk Check

actionlint(permissions)

[new] "read-only" is invalid for permission of scope "actions". available values are "read", "write" or "none"

steps:
- name: Checkout
Expand Down
Loading