mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 09:02:50 +00:00
Fix cache-read-only for scheduled jobs
The fix for #383 introduced a bug that caused the post-action to fail when attemping to resolve `cache-read-only` for scheduled jobs. This has been fixed with an explicit (rather than implicit) check for 'event.repository != null'. Fixes #409
This commit is contained in:
parent
c85b5e1be7
commit
bf2a15ee94
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ inputs:
|
|||
When 'true', existing entries will be read from the cache but no entries will be written.
|
||||
By default this value is 'false' for workflows on the GitHub default branch and 'true' for workflows on other branches.
|
||||
required: false
|
||||
default: ${{ github.event.repository && github.ref_name != github.event.repository.default_branch }}
|
||||
default: ${{ github.event.repository != null && github.ref_name != github.event.repository.default_branch }}
|
||||
|
||||
cache-write-only:
|
||||
description: |
|
||||
|
|
Loading…
Reference in a new issue