-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create .yamlignore * Create .yamllint * Create workflow_yaml_lint.yml * Yaml Lint in AppVeyour * Yaml Lint in Freetype2 * Yaml Lint in Mediaportal * Yaml Lint in Mediaportal Jira * Yaml Lint in Mediaportal Release * Yaml Lint in Mediaportal Test Build * Yaml Lint in Pull Request Labeler * Yaml Lint in Workflow Milestone * Yaml Lint in Workflow Code Scanning - CodeQL * Yaml Lint in Workflow Size and Stability labels
- Loading branch information
1 parent
1a71d93
commit 7735cba
Showing
13 changed files
with
162 additions
and
116 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
critical: | ||
- '(Critical|critical|Urgent|urgent)' | ||
- '(Critical|critical|Urgent|urgent)' | ||
|
||
enhancement: | ||
- '(Enhancement|enhancement)' | ||
- '(Enhancement|enhancement)' | ||
|
||
Engine: | ||
- '(Core|core)' | ||
- '(Core|core)' | ||
|
||
TV: | ||
- '(TV|TVE)' | ||
- '(TV|TVE)' | ||
|
||
Tuning: | ||
- '(Tuning|tuning)' | ||
- '(Tuning|tuning)' | ||
|
||
MPE: | ||
- 'MPE' | ||
- 'MPE' |
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
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 |
---|---|---|
|
@@ -3,18 +3,18 @@ name: "Workflow / Pull Request Labeler" | |
on: | ||
pull_request_target: | ||
types: [opened, edited] | ||
|
||
jobs: | ||
labeler: | ||
name: Add labels to Pull Request | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Add labels to Pull Request | ||
uses: github/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler.yml | ||
enable-versioned-regex: 0 | ||
include-title: 1 | ||
- name: Add labels to Pull Request | ||
uses: github/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler.yml | ||
enable-versioned-regex: 0 | ||
include-title: 1 |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: "Workflow / Milestone" | |
|
||
on: | ||
pull_request_target: | ||
types: | ||
types: | ||
- opened | ||
- closed | ||
|
||
|
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,23 @@ | ||
name: Workflow / YAML lint | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "**.yaml" | ||
- "**.yml" | ||
pull_request: | ||
paths: | ||
- "**.yaml" | ||
- "**.yml" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
yamllint: | ||
name: 🧹 Yaml Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⤵️ Check out configuration from GitHub | ||
uses: actions/checkout@v4 | ||
- name: 🚀 Run yamllint | ||
run: yamllint --strict . |
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,2 @@ | ||
/libbluray/*.yaml | ||
/libbluray/*.yml |
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,19 @@ | ||
--- | ||
extends: default | ||
|
||
ignore-from-file: [.gitignore, .yamlignore] | ||
|
||
rules: | ||
document-start: disable | ||
empty-lines: | ||
level: error | ||
max: 1 | ||
max-start: 0 | ||
max-end: 1 | ||
indentation: | ||
level: error | ||
spaces: 2 | ||
indent-sequences: true | ||
check-multi-line-strings: false | ||
line-length: disable | ||
truthy: disable |
Oops, something went wrong.