Skip to content

Commit 73e39c7

Browse files
Merge pull request #55 from FalloutFalcon/apoc-pull-5-21-2026
Darkpack Pull 5/21/2026
2 parents 1a269b5 + 37ae612 commit 73e39c7

831 files changed

Lines changed: 20878 additions & 9290 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/discord_pr_announce.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if [ -n "$ENABLER_SECRET" ]; then SECRET_EXISTS=true ; fi
1717
echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT
1818
- name: Send Discord notification
19-
uses: tgstation/discord-notify@v3
19+
uses: tgstation/discord-notify@main
2020
if: >
2121
steps.secrets_set.outputs.SECRETS_ENABLED &&
2222
(github.event.pull_request.merged == true || github.event.action == 'opened') &&

.github/workflows/run_linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
dotnet-version: 9.x
4545
- name: Install OpenDream
46-
uses: robinraju/release-downloader@93eac224fa5a1e835cc942d66c12ee373bc7fae9
46+
uses: robinraju/release-downloader@v1.13
4747
with:
4848
repository: "OpenDreamProject/OpenDream"
4949
tag: "latest"

.github/workflows/stale.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,11 @@ jobs:
3838
- name: Filter staled pull requests for announcement
3939
id: filter-prs
4040
uses: actions/github-script@v9
41+
env:
42+
input: ${{steps.stale.outputs.staled-issues-prs}}
4143
with:
4244
script: |
43-
return JSON.parse(`${{steps.stale.outputs.staled-issues-prs}}`)
45+
return JSON.parse(process.env.input)
4446
.filter(issue => !!issue.pull_request)
4547
.map(pr => ({
4648
title: pr.title,
@@ -65,7 +67,7 @@ jobs:
6567
if [ -n "$ENABLER_SECRET" ]; then SECRET_EXISTS=true ; fi
6668
echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT
6769
- name: Send Discord notification
68-
uses: tgstation/discord-notify@v3
70+
uses: tgstation/discord-notify@main
6971
if: >
7072
steps.secrets_set.outputs.SECRETS_ENABLED
7173
with:

0 commit comments

Comments
 (0)