We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34e9f03 commit 2c51475Copy full SHA for 2c51475
1 file changed
.github/workflows/ci.yml
@@ -47,18 +47,16 @@ jobs:
47
}
48
console.log('schemas ok');
49
NODE
50
- - name: Commit validated source implementation
+ - name: Publish validated source commit
51
id: commit
52
shell: bash
53
- env:
54
- HEAD_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }}
55
run: |
56
set -euo pipefail
57
git config user.name "github-actions[bot]"
58
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
59
git add global-template/docgen
60
git commit -m "feat: stabilize runtime and add stack-neutral quality gates"
61
- git push origin "HEAD:${HEAD_BRANCH}"
+ git push origin "HEAD:agent/phase2-validated-output"
62
echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
63
64
validate-final:
0 commit comments