Skip to content

Commit

Permalink
oups, wrong tgs version also reverts this cl cfg change
Browse files Browse the repository at this point in the history
  • Loading branch information
LetterN committed Mar 18, 2024
1 parent e44e621 commit 66918be
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ jobs:
run: bash tools/ci/check_grep.sh
- name: Ticked File Enforcement
if: steps.linter-setup.conclusion == 'success' && !cancelled()
run: |
tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/tgstation_dme.json
tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/unit_tests.json
- name: Check Define Sanity
if: steps.linter-setup.conclusion == 'success' && !cancelled()
run: tools/bootstrap/python -m define_sanity.check
# add if needed => tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/tgstation_dme.json
run: tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/unit_tests.json
# this would be nice cleaning up local defines
# - name: Check Define Sanity
# if: steps.linter-setup.conclusion == 'success' && !cancelled()
# run: tools/bootstrap/python -m define_sanity.check
- name: Run DreamChecker
if: steps.linter-setup.conclusion == 'success' && !cancelled()
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .tgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version: 1
# The BYOND version to use (kept in sync with dependencies.sh by the "TGS Test Suite" CI job)
# Must be interpreted as a string, keep quoted
byond: "515.1630"
byond: "514.1588"
# Folders to create in "<instance_path>/Configuration/GameStaticFiles/"
static_files:
# Config directory should be static
Expand Down
29 changes: 25 additions & 4 deletions tools/pull_request_hooks/changelogConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ export const CHANGELOG_ENTRIES = [
},
],

[
["tweak"],
{
placeholders: ["tweaked a few things"],
},
],

[
["qol"],
{
Expand All @@ -40,16 +47,30 @@ export const CHANGELOG_ENTRIES = [
],

[
["sound"],
["soundadd"],
{
placeholders: ["added a new sound thingy"],
},
],

[
["sounddel"],
{
placeholders: ["removed an old sound thingy"],
},
],

[
["imageadd"],
{
placeholders: ["added/modified/removed audio or sound effects"],
placeholders: ["added some icons and images"],
},
],

[
["image"],
["imagedel"],
{
placeholders: ["added/modified/removed some icons or images"],
placeholders: ["deleted some icons and images"],
},
],

Expand Down

0 comments on commit 66918be

Please sign in to comment.