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
31 changes: 31 additions & 0 deletions .github/workflows/determinism-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Determinism Check
on:
push:
branches: [ main ]
permissions:
contents: read
jobs:
determinism:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Hard clean
shell: bash
run: |
set -euo pipefail
git reset --hard
git clean -ffd
- name: Verify clean workspace
shell: bash
run: |
set -euo pipefail
test -z "$(git status --porcelain=v1)"
git diff --exit-code
git submodule status || true
- name: Determinism marker
shell: bash
run: |
set -euo pipefail
echo "determinism: ok"
20 changes: 20 additions & 0 deletions .github/workflows/identity.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: identity
on:
push:
branches: [ main ]
permissions:
contents: read
jobs:
identity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Actor/Ref assertion
shell: bash
run: |
set -euo pipefail
echo "actor=${GITHUB_ACTOR}"
echo "ref=${GITHUB_REF}"
echo "sha=${GITHUB_SHA}"