File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4343 ref : ${{ github.event.pull_request.head.sha }}
4444 -
4545 name : Checkout current state of Branch
46- if : github.event_name == 'push'
46+ if : ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
4747 uses : actions/checkout@v4
4848 # End: Workaround for issue with actions/checkout...
4949 -
5353 echo "BRANCH_NAME=${{ github.event.pull_request.base.ref }}" >> $GITHUB_ENV
5454 -
5555 name : " Resolve branch name on push in branch of repository."
56- if : github.event_name == 'push' && !startsWith( github.ref, 'refs/tags/')
56+ if : ${{ !startsWith( github.ref, 'refs/tags/') && (github. event_name == 'push' || github.event_name == 'schedule') }}
5757 run : |
5858 echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
5959 -
@@ -130,7 +130,7 @@ jobs:
130130 ref : ${{ github.event.pull_request.head.sha }}
131131 -
132132 name : Checkout current state of Branch
133- if : github.event_name == 'push'
133+ if : ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
134134 uses : actions/checkout@v4
135135 with :
136136 fetch-depth : 2
You can’t perform that action at this time.
0 commit comments