Skip to content

Commit cd2ac26

Browse files
committed
Read the newer master source before reconciling concurrent review repairs
Read-only exact-revision snapshot for offline merge validation. No application or master changes. This temporary workflow is removed in the reconciled branch commit.
1 parent 539f117 commit cd2ac26

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Reconcile source snapshot
2+
on:
3+
push:
4+
branches: [fix/review-and-live-acquisition-20260922]
5+
paths: [.github/workflows/reconcile-source.yml]
6+
permissions:
7+
contents: read
8+
jobs:
9+
source:
10+
runs-on: ubuntu-latest
11+
timeout-minutes: 3
12+
steps:
13+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
14+
with:
15+
ref: e772b67ccb8f4c25c563f0eaf122ae2b3f13053f
16+
- name: Archive exact newer master
17+
run: |
18+
mkdir snapshot
19+
git rev-parse HEAD > snapshot/commit.txt
20+
git archive --format=tar HEAD > snapshot/source.tar
21+
sha256sum snapshot/source.tar > snapshot/source.sha256
22+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
23+
with:
24+
name: reconcile-source
25+
path: snapshot
26+
retention-days: 1

0 commit comments

Comments
 (0)