We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d631b10 commit de05fb9Copy full SHA for de05fb9
.github/workflows/benchmarking.yaml
@@ -29,8 +29,8 @@ jobs:
29
- name: Ensure base branch is fetched
30
if: ${{ github.event_name == 'pull_request' }}
31
run: |
32
- git checkout -b $GITHUB_EVENT_PULL_REQUEST_HEAD_SHA
33
- echo "$GITHUB_REF_NAME"
+ git checkout -b $GITHUB_HEAD_SHA
+ echo "$GITHUB_HEAD_SHA"
34
echo "$GITHUB_BASE_REF"
35
git branch
36
git branch -va
touchstone/script.R
@@ -1,5 +1,5 @@
1
touchstone:::touchstone_clear()
2
-warning(Sys.getenv("GITHUB_EVENT_PULL_REQUEST_HEAD_SHA"))
+warning(Sys.getenv("GITHUB_HEAD_SHA"))
3
4
refs <- c(Sys.getenv("GITHUB_BASE_REF"), readLines("github_ref_name"))
5
warning(refs)
0 commit comments