Commit 6c75146 1 parent fe53ae2 commit 6c75146 Copy full SHA for 6c75146
File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 6
6
base :
7
7
description : The Base Ref to apply the diff
8
8
required : false
9
- default : ' main'
9
+ default : main
10
+ force :
11
+ description : Force the update of integration snapshots even if the dictionaries are not updated.
12
+ required : false
13
+ default : false
14
+ type : boolean
10
15
11
16
schedule :
12
17
- cron : ' 0 7 * * *'
@@ -17,6 +22,7 @@ permissions:
17
22
env :
18
23
NEW_BRANCH : " update-dictionaries-${{ inputs.base || 'main' }}"
19
24
REF_BRANCH : ${{ inputs.base || 'main' }}
25
+ NODE_VERSION : ' 22.x'
20
26
21
27
jobs :
22
28
calc-ref :
@@ -119,7 +125,7 @@ jobs:
119
125
patch : ${{ needs.check-dictionaries.outputs.patch }}
120
126
121
127
integrations :
122
- if : ${{ needs.check-dictionaries.outputs.patch }}
128
+ if : ${{ inputs.force || needs.check-dictionaries.outputs.patch }}
123
129
runs-on : ubuntu-latest
124
130
needs :
125
131
- load-integrations
@@ -158,6 +164,7 @@ jobs:
158
164
run : corepack enable
159
165
160
166
- name : Patch
167
+ if : ${{ env.PATCH }}
161
168
run : |
162
169
echo "$PATCH" | git apply
163
170
You can’t perform that action at this time.
0 commit comments