We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb7c373 commit ef301fcCopy full SHA for ef301fc
.github/workflows/ci.yml
@@ -55,6 +55,10 @@ jobs:
55
if: matrix.name == 'gcc-6'
56
# Recent versions of Github's checkout action do not run on older Ubuntu versions because they use a too recent
57
# Node.js version. Thus, we have to checkout the code manually.
58
+ # Doing so is a bit tricky when it comes to PRs from forks (see #249 for details). The general idea here is that
59
+ # we access Github's context information for the event triggering the action's execution and use some details on
60
+ # the PR's HEAD if given. Otherwise (for executions due to master updates), we still use the provided
61
+ # environment variables.
62
run: |
63
apt-get update
64
apt-get install -y git
0 commit comments