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
2 changes: 1 addition & 1 deletion .github/workflows/claude-responder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ jobs:

- name: Render execution to step summary
if: always() && steps.claude.outputs.execution_file != ''
uses: lentago/shared-workflows/.github/actions/render-claude-summary@v1.1.0
uses: lentago/shared-workflows/.github/actions/render-claude-summary@v1.1.1
with:
execution_file: ${{ steps.claude.outputs.execution_file }}
2 changes: 1 addition & 1 deletion .github/workflows/claude-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,6 @@ jobs:

- name: Render execution to step summary
if: always() && steps.claude.outputs.execution_file != ''
uses: lentago/shared-workflows/.github/actions/render-claude-summary@v1.1.0
uses: lentago/shared-workflows/.github/actions/render-claude-summary@v1.1.1
with:
execution_file: ${{ steps.claude.outputs.execution_file }}
9 changes: 6 additions & 3 deletions .github/workflows/site-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,12 @@ jobs:
deploy:
runs-on: ubuntu-latest

concurrency:
group: deploy-main
cancel-in-progress: true
# NO job-level concurrency here — deliberately. Concurrency policy belongs
# to the CALLER (all three site repos hold a workflow-level `deploy-main`
# group). A group declared here deadlocks against it: the caller's workflow
# takes the lock, this called job then waits on the same name, and GitHub
# cancels the pair ("deadlock detected for concurrency group"). Proven live
# on the first v1.1.0 deploy (site-lentago-dev run 32057853117).

permissions:
id-token: write
Expand Down