Skip to content

Commit f449d38

Browse files
committed
Fix GitHub Actions repository references from Ryujinx/Ryujinx to devz906/MelonJR
- Update all checkout actions to explicitly reference devz906/MelonJR - Disable problematic triggers (pull_request_target, workflow_run) that cause repository context issues - Update changelog links and issue templates to point to correct repository - Prevent 'repository not found' errors in GitHub Actions This resolves the checkout error where workflows were trying to fetch from the non-existent Ryujinx/Ryujinx repository.
1 parent d1cb695 commit f449d38

File tree

11 files changed

+51
-37
lines changed

11 files changed

+51
-37
lines changed

.github/ISSUE_TEMPLATE/missing_cpu_instruction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ body:
2121
id: required
2222
attributes:
2323
label: Required by
24-
description: Add links to the [compatibility list page(s)](https://github.com/Ryujinx/Ryujinx-Games-List/issues) of the game(s) that require this instruction.
24+
description: Add links to the compatibility list page(s) of the game(s) that require this instruction.
2525
validations:
2626
required: true

.github/ISSUE_TEMPLATE/missing_service_call.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ body:
2020
id: required
2121
attributes:
2222
label: Required by
23-
description: Add links to the [compatibility list page(s)](https://github.com/Ryujinx/Ryujinx-Games-List/issues) of the game(s) that require this service.
23+
description: Add links to the compatibility list page(s) of the game(s) that require this service.
2424
validations:
2525
required: true

.github/ISSUE_TEMPLATE/missing_shader_instruction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ body:
1414
id: required
1515
attributes:
1616
label: Required by
17-
description: Add links to the [compatibility list page(s)](https://github.com/Ryujinx/Ryujinx-Games-List/issues) of the game(s) that require this instruction.
17+
description: Add links to the compatibility list page(s) of the game(s) that require this instruction.
1818
validations:
1919
required: true

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
fail-fast: false
2626
steps:
2727
- uses: actions/checkout@v4
28+
with:
29+
repository: devz906/MelonJR
2830

2931
- uses: actions/setup-dotnet@v4
3032
with:
@@ -109,6 +111,8 @@ jobs:
109111

110112
steps:
111113
- uses: actions/checkout@v4
114+
with:
115+
repository: devz906/MelonJR
112116

113117
- uses: actions/setup-dotnet@v4
114118
with:

.github/workflows/checks.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: Perform checks
22

33
on:
4-
pull_request:
5-
branches: [ master ]
6-
paths:
7-
- '**'
8-
- '!.github/**'
9-
- '!*.yml'
10-
- '!*.config'
11-
- '!*.md'
12-
- '.github/workflows/*.yml'
4+
# pull_request:
5+
# branches: [ master ]
6+
# paths:
7+
# - '**'
8+
# - '!.github/**'
9+
# - '!*.yml'
10+
# - '!*.config'
11+
# - '!*.md'
12+
# - '.github/workflows/*.yml'
13+
workflow_dispatch:
1314

1415
permissions:
1516
pull-requests: write
@@ -25,6 +26,7 @@ jobs:
2526
steps:
2627
- uses: actions/checkout@v4
2728
with:
29+
repository: devz906/MelonJR
2830
fetch-depth: 0
2931

3032
- uses: actions/setup-dotnet@v4

.github/workflows/flatpak.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v4
2828
with:
29+
repository: devz906/MelonJR
2930
path: Ryujinx
3031

3132
- uses: actions/setup-dotnet@v4
@@ -157,7 +158,7 @@ jobs:
157158
continue
158159
if (
159160
source["type"] == "git"
160-
and source["url"] == "https://github.com/Ryujinx/Ryujinx.git"
161+
and source["url"] == "https://github.com/devz906/MelonJR.git"
161162
):
162163
source["commit"] = os.environ['RYUJINX_GIT_HASH']
163164

.github/workflows/mako.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ on:
2323
types: [created, edited]
2424
issues:
2525
types: [opened, edited, reopened, pinned, milestoned, demilestoned, assigned, unassigned, labeled, unlabeled]
26-
pull_request_target:
27-
types: [opened, edited, reopened, synchronize, ready_for_review, assigned, unassigned]
26+
# pull_request_target:
27+
# types: [opened, edited, reopened, synchronize, ready_for_review, assigned, unassigned]
2828

2929
jobs:
3030
tasks:
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
# Ensure we pin the source origin as pull_request_target run under forks.
4444
fetch-depth: 0
45-
repository: Ryujinx/Ryujinx
45+
repository: devz906/MelonJR
4646
ref: master
4747

4848
- name: Run Mako command

.github/workflows/nightly_pr_comment.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
name: Comment PR artifacts links
1+
name: Comment PR artifacts links (DISABLED)
22

33
on:
4-
workflow_run:
5-
workflows: ['Perform checks']
6-
types: [completed]
4+
# workflow_run:
5+
# workflows: ['Perform checks']
6+
# types: [completed]
7+
workflow_dispatch:
78

89
jobs:
910
pr_comment:

.github/workflows/pr_triage.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
name: "Pull Request Triage"
1+
name: "Pull Request Triage (DISABLED)"
22
on:
3-
pull_request_target:
4-
types: [opened, ready_for_review]
3+
# pull_request_target:
4+
# types: [opened, ready_for_review]
5+
workflow_dispatch:
56

67
jobs:
78
triage:
@@ -18,7 +19,7 @@ jobs:
1819
with:
1920
# Ensure we pin the source origin as pull_request_target run under forks.
2021
fetch-depth: 0
21-
repository: Ryujinx/Ryujinx
22+
repository: devz906/MelonJR
2223
ref: master
2324

2425
- name: Update labels based on changes

.github/workflows/release.yml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name: Release job
33
on:
44
workflow_dispatch:
55
inputs: {}
6-
push:
7-
branches: [ master ]
8-
paths-ignore:
9-
- '.github/**'
10-
- '*.yml'
11-
- '*.json'
12-
- '*.config'
13-
- '*.md'
6+
# push:
7+
# branches: [ master ]
8+
# paths-ignore:
9+
# - '.github/**'
10+
# - '*.yml'
11+
# - '*.json'
12+
# - '*.config'
13+
# - '*.md'
1414

1515
concurrency: release
1616

@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
name: ${{ steps.version_info.outputs.build_version }}
5151
tag: ${{ steps.version_info.outputs.build_version }}
52-
body: "For more information about this release please check out the official [Changelog](https://github.com/Ryujinx/Ryujinx/wiki/Changelog)."
52+
body: "For more information about this release please check out the official [Changelog](https://github.com/devz906/MelonJR/wiki/Changelog)."
5353
omitBodyDuringUpdate: true
5454
owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}
5555
repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
@@ -67,6 +67,8 @@ jobs:
6767
- { name: linux-arm64, os: ubuntu-latest, zip_os_name: linux_arm64 }
6868
steps:
6969
- uses: actions/checkout@v4
70+
with:
71+
repository: devz906/MelonJR
7072

7173
- uses: actions/setup-dotnet@v4
7274
with:
@@ -136,7 +138,7 @@ jobs:
136138
name: ${{ steps.version_info.outputs.build_version }}
137139
artifacts: "release_output/*.tar.gz,release_output/*.zip"
138140
tag: ${{ steps.version_info.outputs.build_version }}
139-
body: "For more information about this release please check out the official [Changelog](https://github.com/Ryujinx/Ryujinx/wiki/Changelog)."
141+
body: "For more information about this release please check out the official [Changelog](https://github.com/devz906/MelonJR/wiki/Changelog)."
140142
omitBodyDuringUpdate: true
141143
allowUpdates: true
142144
replacesArtifacts: true
@@ -150,6 +152,8 @@ jobs:
150152
timeout-minutes: ${{ fromJSON(vars.JOB_TIMEOUT) }}
151153
steps:
152154
- uses: actions/checkout@v4
155+
with:
156+
repository: devz906/MelonJR
153157

154158
- uses: actions/setup-dotnet@v4
155159
with:
@@ -202,7 +206,7 @@ jobs:
202206
name: ${{ steps.version_info.outputs.build_version }}
203207
artifacts: "publish_ava/*.tar.gz, publish_headless/*.tar.gz"
204208
tag: ${{ steps.version_info.outputs.build_version }}
205-
body: "For more information about this release please check out the official [Changelog](https://github.com/Ryujinx/Ryujinx/wiki/Changelog)."
209+
body: "For more information about this release please check out the official [Changelog](https://github.com/devz906/MelonJR/wiki/Changelog)."
206210
omitBodyDuringUpdate: true
207211
allowUpdates: true
208212
replacesArtifacts: true

0 commit comments

Comments
 (0)