···52 outpaths:
53 name: Outpaths
54 runs-on: ubuntu-24.04-arm
55- needs: [ prepare ]
56 strategy:
57 fail-fast: false
58 matrix:
···163 compare:
164 name: Comparison
165 runs-on: ubuntu-24.04-arm
166- needs: [ prepare, outpaths ]
167 if: needs.prepare.outputs.targetSha
168 permissions:
169 issues: write # needed to create *new* labels
···294 # No dependency on "compare", so that it can start at the same time.
295 # We only wait for the "comparison" artifact to be available, which makes the start-to-finish time
296 # for the eval workflow considerably faster.
297- needs: [ prepare, outpaths ]
298 if: needs.prepare.outputs.targetSha
299 uses: ./.github/workflows/reviewers.yml
300 secrets: inherit
···52 outpaths:
53 name: Outpaths
54 runs-on: ubuntu-24.04-arm
55+ needs: [prepare]
56 strategy:
57 fail-fast: false
58 matrix:
···163 compare:
164 name: Comparison
165 runs-on: ubuntu-24.04-arm
166+ needs: [prepare, outpaths]
167 if: needs.prepare.outputs.targetSha
168 permissions:
169 issues: write # needed to create *new* labels
···294 # No dependency on "compare", so that it can start at the same time.
295 # We only wait for the "comparison" artifact to be available, which makes the start-to-finish time
296 # for the eval workflow considerably faster.
297+ needs: [prepare, outpaths]
298 if: needs.prepare.outputs.targetSha
299 uses: ./.github/workflows/reviewers.yml
300 secrets: inherit
+1-1
.github/workflows/periodic-merge-24h.yml
···11 schedule:
12 # * is a special character in YAML so you have to quote this string
13 # Merge every 24 hours
14- - cron: '0 0 * * *'
15 workflow_dispatch:
1617permissions: {}
···11 schedule:
12 # * is a special character in YAML so you have to quote this string
13 # Merge every 24 hours
14+ - cron: '0 0 * * *'
15 workflow_dispatch:
1617permissions: {}
+1-1
.github/workflows/periodic-merge-6h.yml
···11 schedule:
12 # * is a special character in YAML so you have to quote this string
13 # Merge every 6 hours
14- - cron: '0 */6 * * *'
15 workflow_dispatch:
1617permissions: {}
···11 schedule:
12 # * is a special character in YAML so you have to quote this string
13 # Merge every 6 hours
14+ - cron: '0 */6 * * *'
15 workflow_dispatch:
1617permissions: {}