chore: bootstrap F1.2 source materialization

This commit is contained in:
2026-09-05 15:09:01 -03:00
parent cd24736df8
commit 2571bda8c4
2 changed files with 33 additions and 0 deletions
Binary file not shown.
+33
View File
@@ -0,0 +1,33 @@
name: Materialize F1.2
on:
push:
branches:
- feature/f1-2-act-admin
permissions:
contents: write
jobs:
materialize:
if: "!contains(github.event.head_commit.message, 'feat: F1.2 materialized')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: feature/f1-2-act-admin
fetch-depth: 0
- name: Materialize F1.2 source
shell: bash
run: |
set -euo pipefail
gunzip -c .f12-materialize/materialize.py.gz > /tmp/materialize_f12.py
echo "4535edfe30e1f78608c3d247303a66f8bd1013558119a87c1ca6b3d0a09d88c0 /tmp/materialize_f12.py" | sha256sum -c -
python /tmp/materialize_f12.py
rm -rf .f12-materialize
rm -f .github/workflows/f1-2-materialize.yml
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "feat: F1.2 materialized act administration"
git push origin HEAD:feature/f1-2-act-admin