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 7b99c70 commit f051275Copy full SHA for f051275
.github/workflows/create-pr.yml
@@ -8,7 +8,7 @@ on:
8
default: false
9
type: boolean
10
schedule:
11
- - cron: '0 0 * * *'
+ - cron: '0 2 * * *'
12
jobs:
13
get-branches:
14
outputs:
@@ -66,10 +66,10 @@ jobs:
66
echo "SOURCE=$SOURCE" >> $GITHUB_ENV
67
echo "TARGET=$TARGET" >> $GITHUB_ENV
68
- name: Run the Action
69
- if: ${{ github.event.inputs.dry-run == 'false' }}
+ if: ${{ github.event.inputs.dry-run == 'false' }} || ${{ github.event_name == 'schedule' }}
70
uses: devops-infra/[email protected]
71
with:
72
- github_token: ${{ secrets.GITHUB_TOKEN }}
+ github_token: ${{ secrets.JCDC_BOT_TOKEN}}
73
source_branch: ${{ env.SOURCE }}
74
target_branch: ${{ env.TARGET }}
75
title: "Merge ${{ env.SOURCE }} into ${{ env.TARGET }}"
0 commit comments