Skip to content
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
405baca
[codex] Add release recovery and trim Random noise-map CI
wallstop Jul 3, 2026
ef9bf39
[codex] Address release recovery review feedback
wallstop Jul 3, 2026
e321e97
[codex] Fail closed on release publication lookup errors
wallstop Jul 3, 2026
f15e37d
[codex] Isolate release tag recovery permissions
wallstop Jul 3, 2026
7329642
[codex] Restore thorough random noise-map sweep
wallstop Jul 3, 2026
187bb4e
[codex] Align Random thorough coverage comment
wallstop Jul 3, 2026
f683e0a
[codex] Recheck release artifacts before tag recovery
wallstop Jul 3, 2026
e16fb19
[codex] Remove unused Random thorough sample constant
wallstop Jul 3, 2026
e2d5f4a
[codex] Use typed recovery boolean guard
wallstop Jul 3, 2026
6bfd3c8
[codex] Tighten Random bounds and permission contract
wallstop Jul 3, 2026
e39ed0c
[codex] Pin Node for release recovery guards
wallstop Jul 3, 2026
a69b743
[codex] Fail closed release publish artifact lookups
wallstop Jul 3, 2026
220e1e1
[codex] Collapse release publish flow and trim EditMode batch tests
wallstop Jul 3, 2026
3cad00c
[codex] Address release source ref review
wallstop Jul 3, 2026
5040678
[codex] Fix Unity UPM retry warning helper
wallstop Jul 3, 2026
82d55b6
[codex] Cancel superseded PR workflow runs
wallstop Jul 3, 2026
be46a0c
[codex] Harden release publish tag verification
wallstop Jul 3, 2026
c42aec3
[codex] Accept JSON 404s for release tag lookup
wallstop Jul 3, 2026
17d4f24
[codex] Trim hull test runtime in PR suite
wallstop Jul 4, 2026
0d90bf7
[codex] Move heavy batch-scope cases to stress
wallstop Jul 4, 2026
28e17ee
[codex] Move redundant editmode scans to stress
wallstop Jul 4, 2026
fe11415
[codex] Keep fast noise-map dimensions deterministic
wallstop Jul 4, 2026
85bc88b
[codex] Report release tag mutation failures clearly
wallstop Jul 4, 2026
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
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ body:
- "2.0.3"
- "2.0.1"
- "2.0.0"
- "1.0.1"
- "Other"
# <!-- END AUTO-UPDATED: package-versions -->
validations:
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ body:
- "2.0.3"
- "2.0.1"
- "2.0.0"
- "1.0.1"
- "Other"
# <!-- END AUTO-UPDATED: package-versions -->
validations:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
- main
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
actionlint:
name: Lint GitHub Actions
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/asmdef-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-asmdef:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/changelog-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-changelog:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/csharp-naming-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-csharp-naming:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/csharp-no-regions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-no-regions:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/csharpier-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ permissions:
contents: write
pull-requests: write

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
format:
name: Format and propose changes
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dependabot-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
dependabot-lint:
name: Dependabot Config Lint
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/doc-code-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
validate-code-samples:
name: Validate Code Samples
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/drawer-multiobject-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-drawer-multiobject:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/license-header-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-license-headers:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/license-year-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
audit-license-years:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint-doc-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
# ── INTERNAL links + linter self-tests: gates every PR ──────────────────────
internal-links:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/llm-instructions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-llm-instructions:
# Run on BOTH Ubuntu and Windows so the skills-index generator's cross-OS
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/markdown-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
validate:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/meta-file-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-meta-files:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/odin-undo-safety-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint-odin-undo-safety:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/prettier-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ permissions:
contents: write
pull-requests: write

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
autofix:
name: Format and propose changes
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pwsh-invocations-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
pwsh-invocations-lint:
name: PowerShell Invocations Lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Release Drafter

on:
# Manual-only: release-tag.yml and release.yml own release merges.
# Running this draft updater on push can race tag-triggered publishing.
# Manual-only: release.yml owns release publishing and tag creation.
# Running this draft updater on push can race manual publishing.
workflow_dispatch:

permissions:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ jobs:
echo
echo "## After Merge"
echo
echo "The Release Tag workflow pushes tag \`${VERSION}\`, then Release Publish validates, packs npm, exports the \`.unitypackage\`, publishes npm, and publishes the GitHub Release assets."
echo "Run the Release Publish workflow on \`${DEFAULT_BRANCH}\` with version \`${VERSION}\`."
echo "Leave \`source_ref\` as \`${DEFAULT_BRANCH}\` for the normal path."
echo "Release Publish validates, packs npm, exports the \`.unitypackage\`, creates the release tag if needed, publishes npm, and publishes the GitHub Release assets."
} > "${pr_body_file}"

GH_TOKEN="${GH_PUSH_TOKEN}" gh pr create \
Expand Down
143 changes: 0 additions & 143 deletions .github/workflows/release-tag.yml

This file was deleted.

Loading
Loading