Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/verify-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
with:
repository: GetTechAPI/TechAPI
path: TechAPI
# TechAPI follows git-flow: promotions are integration work, so branch
# from develop and open the PR there. Cutting from main would put the
# bot branch behind whatever is already integrated.
ref: develop
fetch-depth: 0
token: ${{ secrets.TECHENGINEBOT_TOKEN || secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -121,6 +125,6 @@ jobs:
Auto-promotions from the verification layer (green+live-source or crossref-confirm).
Each flip is verified:false->true only; see data/_verify/ledger.jsonl. Refs #1"
git push origin "$branch"
gh pr create --repo GetTechAPI/TechAPI --base main --head "$branch" \
gh pr create --repo GetTechAPI/TechAPI --base develop --head "$branch" \
--title "data(verify): verified promotions ($(date -u +%Y-%m-%d))" \
--body "Automated verified promotions from \`app.verify promote\` (run in TechEngine). Each change flips only the \`verified\` flag; structural validator passed and diff scope guarded. Review before merge. Refs #1"
Loading