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
66 changes: 66 additions & 0 deletions .github/workflows/signed-push-smoke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# SPDX-License-Identifier: MPL-2.0
# End-to-end check for the signed-push composite action: pushes a throwaway commit
# via the GitHub App and asserts GitHub marks it "Verified". Manual trigger only.
# Requires repo/org secret APP_PRIVATE_KEY and variable APP_ID (the estate App).
name: signed-push smoke test

on:
workflow_dispatch:

permissions:
contents: write

jobs:
smoke:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
with:
fetch-depth: 0

- name: Create throwaway branch + a local commit
id: prep
shell: bash
run: |
set -euo pipefail
BRANCH="ci/signed-push-smoke-${GITHUB_RUN_ID}"
echo "branch=$BRANCH" >> "$GITHUB_OUTPUT"
git config user.name "estate-committer[bot]"
git config user.email "estate-committer[bot]@users.noreply.github.com"
git checkout -b "$BRANCH"
# Create the remote branch at the current base so createCommitOnBranch has
# an existing ref to commit onto, then fetch its tracking ref for the diff.
git push origin "$BRANCH"
git fetch origin "$BRANCH"
# Trivial change to be pushed as a Verified commit.
mkdir -p .ci-smoke
date -u +"%Y-%m-%dT%H:%M:%SZ" > .ci-smoke/last-signed-push.txt
git add .ci-smoke/last-signed-push.txt
git commit -m "test(signed-push): verified-commit smoke [run ${GITHUB_RUN_ID}]"

- name: Push the local commit as Verified (via the App)
uses: ./.github/actions/signed-push
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
branch: ${{ steps.prep.outputs.branch }}

- name: Assert Verified, then delete the throwaway branch
shell: bash
env:
GH_TOKEN: ${{ github.token }}
BRANCH: ${{ steps.prep.outputs.branch }}
run: |
set -euo pipefail
SHA=$(gh api "repos/${GITHUB_REPOSITORY}/commits/${BRANCH}" --jq '.sha')
read -r VERIFIED REASON < <(gh api "repos/${GITHUB_REPOSITORY}/commits/${SHA}" \
--jq '.commit.verification | "\(.verified) \(.reason)"')
echo "head ${SHA} → verified=${VERIFIED} reason=${REASON}"
# Always clean up the throwaway branch.
git push origin --delete "$BRANCH" || true
if [ "$VERIFIED" != "true" ]; then
echo "::error::signed-push produced an UNVERIFIED commit (reason=${REASON}). Check that APP_ID/APP_PRIVATE_KEY are set and the App is installed on this repo."
exit 1
fi
echo "✅ signed-push produced a Verified commit — Arm B1 works end-to-end."
Loading