-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Automatically label pull requests - Hilight some warnings in the output - Keep actions updated
- Loading branch information
1 parent
69a20d7
commit 8ac8c16
Showing
5 changed files
with
157 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
labels: | ||
- "Building" | ||
#reviewers: | ||
# - carstene1ns | ||
commit-message: | ||
prefix: "CI" |
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,17 @@ | ||
{ | ||
"problemMatcher": [ | ||
{ | ||
"owner": "gcc-problem-matcher", | ||
"pattern": [ | ||
{ | ||
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3, | ||
"severity": 4, | ||
"message": 5 | ||
} | ||
] | ||
} | ||
] | ||
} |
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,98 @@ | ||
# | ||
# See https://github.com/actions/labeler | ||
# and workflows/pr_labels.yml for reference | ||
# | ||
|
||
Building: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .github/** | ||
- CMakeLists.txt | ||
- builds/** | ||
- '!builds/android/app/**' | ||
- Makefile.am | ||
- configure.ac | ||
|
||
Documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- docs/** | ||
- '**/*.md' | ||
- '**/*.adoc' | ||
- src/docmain.h | ||
- '**/Doxyfile*' | ||
- resources/unix/*.metainfo.xml | ||
|
||
Tests: | ||
- changed-files: | ||
- any-glob-to-any-file: [ tests/** ] | ||
|
||
Window/Scenes: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/**/window_*, src/**/scene_* ] | ||
|
||
# misc | ||
|
||
Audio: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/**/*audio* ] | ||
|
||
FileFinder: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/**/filefinder*, src/**/filesystem* ] | ||
|
||
Fonts: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- resources/exfont.png | ||
- resources/ttyp0/** | ||
- resources/shinonome/** | ||
- resources/wenquanyi/** | ||
- src/**/*font* | ||
- src/generated/bitmapfont_* | ||
|
||
MIDI: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/**/*midi* ] | ||
|
||
# platforms | ||
|
||
3DS: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/3ds/**, resources/3ds/** ] | ||
|
||
Android: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/android/**, builds/android/app/** ] | ||
|
||
Emscripten: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/emscripten/**, resources/emscripten/** ] | ||
|
||
libretro: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/libretro/** ] | ||
|
||
macOS: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/macos/**, resources/macos/** ] | ||
|
||
PSVita: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/psvita/**, resources/psvita/** ] | ||
|
||
Switch: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/switch/**, resources/switch/** ] | ||
|
||
Wii: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/wii/**, resources/wii/** ] | ||
|
||
WiiU: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/wiiu/**, resources/wiiu/** ] | ||
|
||
Win32: | ||
- changed-files: | ||
- any-glob-to-any-file: [ src/platform/windows/**, resources/windows/** ] |
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,27 @@ | ||
name: "Label Pull Requests" | ||
on: | ||
pull_request_target: | ||
types: [opened, ready_for_review] | ||
|
||
jobs: | ||
update: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
with: | ||
# pull_request_target is run under forks, use main repo source | ||
fetch-depth: 0 | ||
repository: EasyRPG/Player | ||
ref: master | ||
|
||
- name: Update labels | ||
uses: actions/labeler@v5 | ||
with: | ||
sync-labels: true | ||
dot: true |
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