Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/sync-arena-configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout webDisplayTools
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v7
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Create Pull Request
if: steps.changes.outputs.changed == 'true'
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: sync arena configs from maDisplayTools"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-calculations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '24'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-g6-encoding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '24'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-pattern-generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '24'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-protocol-roundtrip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '24'

Expand Down
1 change: 0 additions & 1 deletion js/arena-configs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/**
* Arena Configurations
* Auto-generated from maDisplayTools/configs/arenas/ and arena_registry/
* Last updated: 2026-07-19T01:25:01.029Z
*
* DO NOT EDIT MANUALLY - regenerate with: node scripts/generate-arena-configs.js
*/
Expand Down
7 changes: 5 additions & 2 deletions scripts/generate-arena-configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,11 +256,14 @@ function main() {
}
const registryStr = registryLines.join(',\n');

// Generate output
// Generate output. Deliberately NO generation timestamp in the header: it made
// every run of the sync-arena-configs workflow a "change" and opened a weekly PR
// whose entire diff was that one line (e.g. #169). Output must stay a pure function
// of the input YAML so "Check for changes" means a real config change. Git history
// records when the file last changed; don't re-add a Date here.
const output = `/**
* Arena Configurations
* Auto-generated from maDisplayTools/configs/arenas/ and arena_registry/
* Last updated: ${new Date().toISOString()}
*
* DO NOT EDIT MANUALLY - regenerate with: node scripts/generate-arena-configs.js
*/
Expand Down