Description
We're observing actions/checkout
creating merge commits based on the repo's latest master SHA, rather than github.event.pull_request.base.sha
from the event that initiated the action.
This causes different merge commits across jobs within a single workflow. This is despite GITHUB_SHA
, github.sha
, github.event.pull_request.head.sha
, and github.event.pull_request.base.sha
being identical for both jobs.
This happens because a new commit was added to master between the two job runs, but the observed behavior is still surprising given that both jobs are given identical environment variables and Github event data.
Identical environment between jobs
GITHUB_REF=refs/pull/14/merge
GITHUB_SHA=aa0ad9298d3b4e43eb7f56bdb33af0609193dba7
Abridged ${{ github }}
context:
GITHUB_CONTEXT: {
"ref": "refs/pull/14/merge",
"sha": "aa0ad9298d3b4e43eb7f56bdb33af0609193dba7",
"head_ref": "siggy/workflow-testing",
"base_ref": "master",
"event": {
"pull_request": {
"base": {
"ref": "master",
"sha": "891c8c550cf9f3890c612e4ef5ba77fbc93ec642",
},
"head": {
"ref": "siggy/workflow-testing",
"sha": "74460e62efc34fe80862f684dad06f41f55dacc1",
},
}
},
}
Job 1
git checkout --progress --force refs/remotes/pull/14/merge
...
HEAD is now at aa0ad929 Merge 74460e62efc34fe80862f684dad06f41f55dacc1 into 891c8c550cf9f3890c612e4ef5ba77fbc93ec642
Full output:
https://github.com/siggy/linkerd2/runs/207435287#step:2:1007
Job 2
git checkout --progress --force refs/remotes/pull/14/merge
...
HEAD is now at 7efd2d0b Merge 74460e62efc34fe80862f684dad06f41f55dacc1 into 324483a653c7c09a350bc2a782080d6ea0ae533d
Note that Job 2 has created merge commit 7efd2d0b
based off of the most recent master commit 324483a653c7c09a350bc2a782080d6ea0ae533d
, despite these SHAs not appearing anywhere in the environment variables or event data.
Full output:
https://github.com/siggy/linkerd2/runs/207437496#step:2:1014
State of master
Note that the above event data references the 2nd most recent commit to master, as that was the state of master when the workflow was triggered:
$ git log --pretty=oneline | head -n2
324483a653c7c09a350bc2a782080d6ea0ae533d master branch testing
891c8c550cf9f3890c612e4ef5ba77fbc93ec642 Merge remote-tracking branch 'upstream/master'
with
/ref
config
Note that setting ref: ${{ github.sha }}
or ref: ${{ github.ref }}
had no effect:
sha
https://github.com/siggy/linkerd2/pull/14/checks?check_run_id=207481400#step:2:3
- name: Checkout code
uses: actions/checkout@v1
with:
ref: ${{ github.sha }}
Run actions/checkout@v1
with:
ref: 17c77866218c23d4b2a47221ccd9aff78a5d7172
clean: true
...
git checkout --progress --force refs/remotes/pull/14/merge
...
HEAD is now at d6ae7796 Merge 80e75c911dbd20e9b1226d7854818843b037dc1a into ae31e8838e171e60e1cd2fa9ad54070fcb741025
ref
https://github.com/siggy/linkerd2/pull/14/checks?check_run_id=207488293#step:2:3
- name: Checkout code
uses: actions/checkout@v1
with:
ref: ${{ github.ref }}
Run actions/checkout@v1
with:
ref: refs/pull/14/merge
clean: true
...
git checkout --progress --force refs/remotes/pull/14/merge
...
HEAD is now at eb786159 Merge 8a33bbfb6ad62902926b1449c2b9703433da6450 into ae31e8838e171e60e1cd2fa9ad54070fcb741025
Previously reported in the Community Forum
...but upon further inspection of workflow environment variables opted to create an issue in this repo.