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 8ecbfbf commit afe6971Copy full SHA for afe6971
.github/workflows/ghc-head.yml
@@ -33,7 +33,8 @@ jobs:
33
steps:
34
- uses: actions/checkout@v4
35
with:
36
- ref: ci/ghc-head
+ # Checkout ci/ghc-head on scheduled runs, PR branch otherwise
37
+ ref: ${{ github.event_name == 'schedule' && 'ci/ghc-head' || github.event.pull_request.head.ref }}
38
submodules: true
39
- name: Install ghcup
40
run: |
0 commit comments