Skip to content

Commit 66cb7ba

Browse files
[PATCH] Refactored more broken links for ORG (- WIP #434 -)
Changes in file .github/workflows/CI-CHGLOG.yml: * refactored old slug "reactive-firewall/multicast" to new slug "reactive-firewall-org/multicast" Changes in file docs/FAQ.md: * refactored old slug "reactive-firewall/multicast" to new slug "reactive-firewall-org/multicast" Changes in file docs/INSTALL.md: * refactored old slug "reactive-firewall/multicast" to new slug "reactive-firewall-org/multicast" Changes in file docs/SECURITY.md: * refactored old slug "reactive-firewall/multicast" to new slug "reactive-firewall-org/multicast" Changes in file docs/USAGE.md: * refactored old slug "reactive-firewall/multicast" to new slug "reactive-firewall-org/multicast" Changes in file generate_changelog.sh: * refactored old slug "reactive-firewall/multicast" to new slug "reactive-firewall-org/multicast"
1 parent 88e9ec8 commit 66cb7ba

File tree

6 files changed

+20
-19
lines changed

6 files changed

+20
-19
lines changed

.github/workflows/CI-CHGLOG.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ jobs:
7272
echo "trigger_id=null" >> "$GITHUB_OUTPUT" # Default fallback
7373
fi
7474
- name: "Fetch Build Info"
75-
if: ${{ (github.repository == 'reactive-firewall/multicast') && success() }}
75+
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
7676
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
7777
with:
7878
path: "BUILD-info.txt"
7979
pattern: multicast-info-*
80-
repository: reactive-firewall/multicast
80+
repository: reactive-firewall-org/multicast
8181
merge-multiple: true
8282
github-token: ${{ env.GH_TOKEN }}
8383
run-id: ${{ steps.get_trigger_id.outputs.trigger_id }}
@@ -92,9 +92,9 @@ jobs:
9292
if: ${{ (steps.check.outputs.should_run == 'true') && success() }}
9393
- id: output_run_id
9494
shell: bash
95-
if: ${{ !cancelled() && (github.repository == 'reactive-firewall/multicast') }}
95+
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
9696
run: |
97-
printf "chglog_url=%s\n" 'https://github.com/reactive-firewall/multicast/actions/runs/${{ github.run_id }}' >> "$GITHUB_OUTPUT"
97+
printf "chglog_url=%s\n" 'https://github.com/reactive-firewall-org/multicast/actions/runs/${{ github.run_id }}' >> "$GITHUB_OUTPUT"
9898
printf "chglog_id=%s\n" ${{ github.run_id }} >> "$GITHUB_OUTPUT"
9999
- name: Checkout repository
100100
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -125,7 +125,7 @@ jobs:
125125
echo "branch_ref=${BRANCH_REF}" >> "$GITHUB_OUTPUT"
126126
- name: "Start chglog GitHub Check"
127127
id: start_chglog_success
128-
if: ${{ (steps.check.outputs.should_run == 'true') && success() && (github.repository == 'reactive-firewall/multicast') }}
128+
if: ${{ (steps.check.outputs.should_run == 'true') && success() && (github.repository == 'reactive-firewall-org/multicast') }}
129129
uses: ./.github/actions/check-control
130130
with:
131131
name: "CI-CHGLOG"
@@ -185,7 +185,7 @@ jobs:
185185
"${CHGLOG_TOOL}" "${CHGLOG_RANGE}" >"${CHGLOG_PATH}" || exit 1;
186186
- name: Upload CHANGELOG artifact
187187
id: upload
188-
if: ${{ success() && (github.repository == 'reactive-firewall/multicast') }}
188+
if: ${{ success() && (github.repository == 'reactive-firewall-org/multicast') }}
189189
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
190190
with:
191191
path: CHANGELOG.md
@@ -215,7 +215,7 @@ jobs:
215215
with:
216216
path: '${{ runner.temp }}/multicast-chglog-${{ needs.check_build.outputs.sha }}'
217217
artifact-ids: ${{ needs.CHGLOG.outputs.artifact-id }}
218-
repository: reactive-firewall/multicast
218+
repository: reactive-firewall-org/multicast
219219
- name: "Move chglog into place"
220220
id: load_chglog_info
221221
if: ${{ always() }}
@@ -234,7 +234,7 @@ jobs:
234234
run: |
235235
if [[ "${{ needs.CHGLOG.outputs.chglog_status }}" == "success" ]]; then
236236
printf "%s\n\n" "# :page_facing_up: Changelog Summary" > "${CHGLOG_COMMENT_BODY}"
237-
printf "%s\n" " * :ballot_box_with_check: Generating Changelog \`${CHGLOG_ID}\` succeeded with commit [${BUILD_SHA}](https://github.com/reactive-firewall/multicast/commit/${BUILD_SHA})" >> "${CHGLOG_COMMENT_BODY}"
237+
printf "%s\n" " * :ballot_box_with_check: Generating Changelog \`${CHGLOG_ID}\` succeeded with commit [${BUILD_SHA}](https://github.com/reactive-firewall-org/multicast/commit/${BUILD_SHA})" >> "${CHGLOG_COMMENT_BODY}"
238238
printf "%s\n" "chglog_success=true" >> "$GITHUB_OUTPUT"
239239
printf "%s\n" "chglog_summary=Generating Changelog Passed" >> "$GITHUB_OUTPUT"
240240
else
@@ -255,7 +255,7 @@ jobs:
255255
{ printf "%s\n" 'chglog_text<<EOF'; cat <"${CHGLOG_COMMENT_BODY}"; printf "%s\n" 'EOF'; } >> "$GITHUB_OUTPUT"
256256
- name: "Upload chglog summary"
257257
id: upload-chglog-summary
258-
if: ${{ !cancelled() && (github.repository == 'reactive-firewall/multicast') }}
258+
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
259259
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
260260
with:
261261
path: ./chglog-Summary-Artifact.txt
@@ -272,7 +272,7 @@ jobs:
272272
sparse-checkout: '.github/actions/check-control'
273273
- name: "Complete chglog GitHub Check"
274274
id: complete_chglog
275-
if: ${{ (github.repository == 'reactive-firewall/multicast') && always() }}
275+
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && always() }}
276276
uses: ./.github/actions/check-control
277277
with:
278278
name: "CI-CHGLOG"
@@ -335,7 +335,7 @@ jobs:
335335
cat <"$GITHUB_OUTPUT" >> "chglog-info.txt"
336336
- name: Upload build summary
337337
id: upload-build-info
338-
if: ${{ !cancelled() && (github.repository == 'reactive-firewall/multicast') }}
338+
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
339339
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
340340
with:
341341
path: "chglog-info.txt"
@@ -355,14 +355,14 @@ jobs:
355355
steps:
356356
- name: "Download Status Summary Artifact"
357357
id: download-chglog-summary
358-
if: ${{ !cancelled() && (github.repository == 'reactive-firewall/multicast') }}
358+
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
359359
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
360360
with:
361361
name: chglog-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
362362
github-token: ${{ github.token }}
363363
- name: "chglog commit comment"
364364
id: chglog-commit-comment
365-
if: ${{ success() && (github.repository == 'reactive-firewall/multicast') }}
365+
if: ${{ success() && (github.repository == 'reactive-firewall-org/multicast') }}
366366
uses: peter-evans/commit-comment@5a6f8285b8f2e8376e41fe1b563db48e6cf78c09 # v3.0.0
367367
with:
368368
sha: ${{ needs.check_build.outputs.sha }}

docs/FAQ.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,8 @@ work as far as the `multicast` module is concerned.
449449

450450
> [!CAUTION]
451451
> It is best to specify the port in use at this time as the default will not be properly
452-
> assigned to `multicast` ( see related reactive-firewall/multicast#62 ) by any central authority.
452+
> assigned to `multicast` ( see related reactive-firewall-org/multicast#62 ) by any central
453+
> authority.
453454
454455
### CLI exit code meanings
455456

docs/INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ python3 -m pip install --use-pep517 --break-system-packages --user 'multicast>=2
2727

2828
```bash
2929
# clone the multicast source repository
30-
git clone "https://github.com/reactive-firewall/multicast.git" multicast
30+
git clone "https://github.com/reactive-firewall-org/multicast.git" multicast
3131
cd multicast
3232
# switch to the stable branch
3333
git checkout stable
@@ -47,7 +47,7 @@ python3 -m multicast --version
4747
4848
```bash
4949
# clone the multicast source repository
50-
git clone https://github.com/reactive-firewall/multicast.git multicast && cd ./multicast
50+
git clone https://github.com/reactive-firewall-org/multicast.git multicast && cd ./multicast
5151
# switch to the default "master" branch
5252
git checkout master
5353
# build the multicast module

docs/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ If you find a significant vulnerability, or evidence of one, please report it pr
55
We prefer that you use the
66
[GitHub mechanism for privately reporting a vulnerability](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability#privately-reporting-a-security-vulnerability).
77
Under the
8-
[main repository's security tab](https://github.com/reactive-firewall/multicast/security), click
8+
[main repository's security tab](https://github.com/reactive-firewall-org/multicast/security), click
99
"Report a vulnerability" to open the advisory form.

docs/USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ finally:
141141
> ```
142142
>
143143
> This is essentially what the
144-
> [default listener does under-the-hood](https://github.com/reactive-firewall/multicast/blob/v2.0.9a5/multicast/hear.py#L830C4-L832C27)
144+
> [default listener does under-the-hood](https://github.com/reactive-firewall-org/multicast/blob/v2.0.9a5/multicast/hear.py#L830C4-L832C27)
145145
> automatically.
146146
147147
### Direct ephemeral receiver with an ad-hoc handler

generate_changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ fi ;
345345
done ;
346346
# diff link
347347
printf "**Full Changelog**: %s(%s)\n\n***\n\n" "[\`${GIT_RANGE}\`]" \
348-
"https://github.com/reactive-firewall/multicast/compare/${GIT_RANGE}" ;
348+
"https://github.com/reactive-firewall-org/multicast/compare/${GIT_RANGE}" ;
349349

350350
# cleanup
351351
unset RAW_NEW_FILES 2>/dev/null || : ;

0 commit comments

Comments
 (0)