Skip to content

Commit

Permalink
[skip ci] Update sync_build_deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler authored Jan 2, 2025
1 parent 82ff0d3 commit bcacbc6
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/sync_build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@ on:
workflow_dispatch:
inputs:
repo_name:
required: true
required: false
description: 'Repo Name (Internal only)'

run_sync:
description: "Run Sync"
type: choice
required: false
default: 'false'
options:
- 'true'
- 'false'

permissions:
contents: write
Expand All @@ -28,7 +35,7 @@ concurrency:
cancel-in-progress: false

env:
IS_SYNC: ${{ github.event_name == 'schedule' || startsWith(github.event.head_commit.message, '[sync]') }}
IS_SYNC: ${{ inputs.run_sync == 'true' || github.event_name == 'schedule' || startsWith(github.event.head_commit.message, '[sync]') }}

jobs:
sync:
Expand Down

0 comments on commit bcacbc6

Please sign in to comment.