fix(ci): re-enable manual dispatch for test full sync (#3812)

This commit is contained in:
teor 2022-03-09 18:00:58 +10:00 committed by GitHub
parent 0d2c7154ea
commit ba5c641c85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@ env:
jobs:
build:
# only run on Mergify head branches:
# only run on Mergify head branches, and on manual dispatch:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-your-workflow-based-on-the-head-or-base-branch-of-a-pull-request-1
if: startsWith(github.head_ref, 'mergify/merge-queue/')
if: startsWith(github.head_ref, 'mergify/merge-queue/') || github.event_name == "workflow_dispatch"
name: Build images
timeout-minutes: 210
runs-on: ubuntu-latest