mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
30 lines
860 B
YAML
30 lines
860 B
YAML
name: Sync Subtrees
|
||
|
||
on:
|
||
workflow_dispatch:
|
||
inputs:
|
||
dryRun:
|
||
description: 'If true, don’t push any changes (for testing only).'
|
||
required: true
|
||
default: true
|
||
type: boolean
|
||
testMerge:
|
||
description: 'Run in test mode, pushing to a test branch.'
|
||
required: true
|
||
default: false
|
||
type: boolean
|
||
|
||
jobs:
|
||
sync-subtrees:
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- name: Run sync-subtrees-action
|
||
uses: usgs-coupled/sync-subtrees-action@main
|
||
with:
|
||
dryRun: ${{ inputs.dryRun }}
|
||
testMerge: ${{ inputs.testMerge }}
|
||
repository_name: ${{ github.event.repository.name }}
|
||
default_branch: ${{ github.event.repository.default_branch }}
|
||
run_number: ${{ github.run_number }}
|
||
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
|