-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reconstruct necessary action workflows & Dependabot rules (#17)
- Loading branch information
1 parent
a1bd611
commit 94091e1
Showing
5 changed files
with
137 additions
and
35 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,40 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
labels: | ||
- "infra" | ||
reviewers: | ||
- regginator | ||
commit-message: | ||
prefix: "ci" | ||
|
||
- package-ecosystem: nuget | ||
directory: / | ||
open-pull-requests-limit: 10 | ||
schedule: | ||
interval: daily | ||
labels: | ||
- "infra" | ||
reviewers: | ||
- regginator | ||
commit-message: | ||
prefix: nuget | ||
groups: | ||
Avalonia: | ||
patterns: | ||
- "*Avalonia*" | ||
Silk.NET: | ||
patterns: | ||
- "Silk.NET*" | ||
OpenTK: | ||
patterns: | ||
- "OpenTK*" | ||
SixLabors: | ||
patterns: | ||
- "SixLabors*" | ||
NUnit: | ||
patterns: | ||
- "NUnit*" |
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,35 @@ | ||
audio: | ||
- changed-files: | ||
- any-glob-to-any-file: 'src/Ryujinx.Audio*/**' | ||
|
||
cpu: | ||
- changed-files: | ||
- any-glob-to-any-file: ['src/ARMeilleure/**', 'src/Ryujinx.Cpu/**', 'src/Ryujinx.Memory/**'] | ||
|
||
gpu: | ||
- changed-files: | ||
- any-glob-to-any-file: ['src/Ryujinx.Graphics.*/**', 'src/Spv.Generator/**', 'src/Ryujinx.ShaderTools/**'] | ||
|
||
'graphics-backend:opengl': | ||
- changed-files: | ||
- any-glob-to-any-file: 'src/Ryujinx.Graphics.OpenGL/**' | ||
|
||
'graphics-backend:vulkan': | ||
- changed-files: | ||
- any-glob-to-any-file: ['src/Ryujinx.Graphics.Vulkan/**', 'src/Spv.Generator/**'] | ||
|
||
gui: | ||
- changed-files: | ||
- any-glob-to-any-file: ['src/Ryujinx/**', 'src/Ryujinx.UI.Common/**', 'src/Ryujinx.UI.LocaleGenerator/**', 'src/Ryujinx.Gtk3/**'] | ||
|
||
horizon: | ||
- changed-files: | ||
- any-glob-to-any-file: ['src/Ryujinx.HLE/**', 'src/Ryujinx.Horizon/**'] | ||
|
||
kernel: | ||
- changed-files: | ||
- any-glob-to-any-file: 'src/Ryujinx.HLE/HOS/Kernel/**' | ||
|
||
infra: | ||
- changed-files: | ||
- any-glob-to-any-file: ['.github/**', 'distribution/**', 'Directory.Packages.props'] |
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,27 @@ | ||
name: "Pull Request Triage" | ||
on: | ||
pull_request_target: | ||
types: [opened, ready_for_review] | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Fetch labeler.yml | ||
uses: actions/checkout@v4 | ||
with: | ||
# Ensure we pin the source origin as pull_request_target run under forks. | ||
fetch-depth: 0 | ||
repository: ryujinx-mirror/ryujinx | ||
ref: mirror/master | ||
|
||
- name: Update labels based on changes in PR | ||
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