Skip to content

Commit 2ac7aa1

Browse files
committed
Merge branch 'master' of https://github.com/Monkestation/Monkestation2.0 into aneri-part-4-in-the-processor-suit
2 parents acfcea0 + 0a9bb70 commit 2ac7aa1

File tree

7 files changed

+32
-13
lines changed

7 files changed

+32
-13
lines changed

.github/workflows/run_linters.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ jobs:
6060
- name: Give Linters A Go
6161
id: linter-setup
6262
run: ":"
63+
- name: Ensure genesis_call.dme is unchanged
64+
if: steps.linter-setup.conclusion == 'success' && !cancelled()
65+
run: bash tools/ci/check_genesis.sh
6366
- name: Run Grep Checks
6467
if: steps.linter-setup.conclusion == 'success' && !cancelled()
6568
run: bash tools/ci/check_grep.sh

html/changelogs/AutoChangeLog-pr-7106.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

html/changelogs/AutoChangeLog-pr-7140.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

html/changelogs/AutoChangeLog-pr-7156.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

html/changelogs/archive/2025-07.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,11 @@
190190
- code_imp: Underlying admin verb system ported to AVD
191191
- code_imp: Mentors converted to implement AVD system
192192
- code_imp: Mentor file reading edits and database storing.
193+
2025-07-13:
194+
Ice-Type:
195+
- rscadd: Gives NT representatives a good assistant points punchcard.
196+
ThePooba:
197+
- rscadd: gives slasher an unremoveable backpack you know what you did
198+
antlersss:
199+
- rscadd: Added new Antlers plushie
200+
- bugfix: 100% more Antlers

tools/ci/check_genesis.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
4+
#ANSI Escape Codes for colors to increase contrast of errors
5+
RED="\033[0;31m"
6+
GREEN="\033[0;32m"
7+
BLUE="\033[0;34m"
8+
NC="\033[0m" # No Color
9+
10+
if sha256sum -c tools/ci/genesis_call.dme.sha256sum ; then
11+
echo -e "${GREEN}code/genesis_call.dme is unchanged.${NC}"
12+
else
13+
echo -e "${RED}code/genesis_call.dme has been changed!${NC}"
14+
echo -e "${BLUE}This is likely not intentional, please revert any changes made to it.${NC}"
15+
echo -e "${BLUE}On the unlikely occurance that you ARE intentionally modifying that file, replace the contents of tools/ci/genesis_call.dme.sha256sum with the following:${NC}"
16+
17+
sha256sum tools/ci/genesis_call.dme.sha256sum
18+
19+
exit 1
20+
fi

tools/ci/genesis_call.dme.sha256sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
393cbb0404a017c61777b178fe5612e033a396550e8633a51fd902cc9912b8b6 code/genesis_call.dme

0 commit comments

Comments
 (0)