We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 93c35ce + 7abcf62 commit 9a9c460Copy full SHA for 9a9c460
1 file changed
.github/workflows/change_impact.yml
@@ -30,6 +30,10 @@ jobs:
30
ref: ${{ github.event.issue.pull_request.head.ref }}
31
fetch-depth: 0 # needed for full commit history
32
33
+ - name: Show current commit
34
+ run: |
35
+ echo "Current HEAD: $(git rev-parse HEAD)"
36
+
37
38
- name: Install Rust toolchain
39
uses: actions-rs/toolchain@v1
@@ -54,8 +58,16 @@ jobs:
54
58
echo "Base commit: $BASE_COMMIT"
55
59
echo "BASE_COMMIT=$BASE_COMMIT" >> $GITHUB_ENV
56
60
61
+ - name: Ensure PR branch remains checked out
62
63
+ git checkout ${{ github.event.issue.pull_request.head.ref }}
64
+ echo "Checked out branch: $(git rev-parse HEAD)"
57
65
-
66
67
68
69
70
71
- name: Build reqflowcli from source
72
run: |
73
cargo build --release
0 commit comments