6 types: [completed]
7 branches:
8▶ - main
9 workflow_dispatch:
10 inputs:
· · ·
27env:
28 TZ: /usr/share/zoneinfo/America/Los_Angeles
29▶ # https://github.com/actions/cache/blob/main/tips-and-workarounds.md#cache-segment-restore-timeout
30 SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1
31
· · ·
209 commit_www_artifacts:
210 needs: [download_artifacts, process_artifacts]
211▶ if: inputs.force == true || (github.ref == 'refs/heads/main' && needs.process_artifacts.outputs.www_branch_count == '0')
212 runs-on: ubuntu-latest
213 permissions:
· · ·
303 # Used to push a commit to builds/facebook-fbsource
304 contents: write
305▶ if: inputs.force == true || (github.ref == 'refs/heads/main' && needs.process_artifacts.outputs.fbsource_branch_count == '0')
306 runs-on: ubuntu-latest
307 steps:
· · ·
368 // at this point in the workflow, we're on the compiled
369 // artifact branch (so the scripts don't exist).
370▶ // We can fix this with a composite action in the main repo.
371 // This script is duplicated above.
372 const fs = require('fs');
+ 1 more matches in this file