1- # Generated by tend 0.1.12 . Regenerate with: uvx tend@latest init
1+ # Generated by tend 0.1.13 . Regenerate with: uvx tend@latest init
22#
33# Do not edit this file directly — it will be overwritten on regeneration.
44# To customize behavior, edit the relevant skill (for example,
@@ -17,13 +17,25 @@ jobs:
1717 group : ${{ github.workflow }}-${{ github.event.pull_request.number }}
1818 cancel-in-progress : true
1919 runs-on : ubuntu-24.04
20+ environment : tend
2021 permissions :
2122 contents : write
2223 pull-requests : write
2324 id-token : write
2425 actions : read
2526 issues : write
2627 steps :
28+ # Two checkouts: `setup:` runs against the base tree, and the PR's own
29+ # tree lands after it. Setup executes as the runner user, outside the
30+ # containment the harness builds for the contributor's code.
31+ - uses : actions/checkout@v7
32+ with :
33+ fetch-depth : 0
34+ fetch-tags : true
35+ token : ${{ secrets.TEND_BOT_TOKEN }}
36+
37+ - uses : ./.github/actions/tend-setup
38+
2739 # GitHub only materializes refs/pull/N/merge for mergeable PRs — on
2840 # conflicting PRs it 404s and every downstream step cascades as skipped.
2941 # Probe first and fall back to /head so review always runs; on fallback
@@ -45,13 +57,12 @@ jobs:
4557 with :
4658 ref : ${{ steps.pr_ref.outputs.ref }}
4759 allow-unsafe-pr-checkout : true
60+ clean : false
4861 fetch-depth : 0
4962 fetch-tags : true
5063 token : ${{ secrets.TEND_BOT_TOKEN }}
5164
52- - uses : ./.github/actions/tend-setup
53-
54- - uses : max-sixty/tend/claude@0.1.12
65+ - uses : max-sixty/tend/claude@0.1.13
5566 with :
5667 github_token : ${{ secrets.TEND_BOT_TOKEN }}
5768 claude_code_oauth_token : ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
0 commit comments