From 275553971d84e878866e8e326a6c3766a7e96aaa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Aug 2025 22:48:19 +0000 Subject: [PATCH] Squashed 'phreeqc3-examples/' changes from 1dbd65fc..6baa6075 6baa6075 Add workflows and configuration for syncing and linting subtrees git-subtree-dir: phreeqc3-examples git-subtree-split: 6baa60752980bb9647c76f946256341b16fb9ca8 --- .github/subtrees.json | 1 + .github/workflows/lint-subtrees.yml | 19 +++++++++++++++ .github/workflows/subtree.yml | 37 +++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 .github/subtrees.json create mode 100644 .github/workflows/lint-subtrees.yml create mode 100644 .github/workflows/subtree.yml diff --git a/.github/subtrees.json b/.github/subtrees.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/.github/subtrees.json @@ -0,0 +1 @@ +[] diff --git a/.github/workflows/lint-subtrees.yml b/.github/workflows/lint-subtrees.yml new file mode 100644 index 00000000..71d8e58f --- /dev/null +++ b/.github/workflows/lint-subtrees.yml @@ -0,0 +1,19 @@ +name: Lint subtrees.json + +on: + pull_request: + paths: + - '.github/subtrees.json' + workflow_call: + workflow_dispatch: + +jobs: + lint-subtrees: + runs-on: ubuntu-latest + env: + CI_SERVER_HOST: github.com + GROUP: usgs-coupled + steps: + - uses: usgs-coupled-subtrees/sync-subtrees-action/lint-subtrees/@main + with: + ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} diff --git a/.github/workflows/subtree.yml b/.github/workflows/subtree.yml new file mode 100644 index 00000000..b4527205 --- /dev/null +++ b/.github/workflows/subtree.yml @@ -0,0 +1,37 @@ +name: Sync Subtrees + +on: + push: + branches: + - master + workflow_dispatch: + inputs: + dryRun: + description: 'If true, don’t push any changes (for testing only).' + required: true + default: false + type: boolean + testMerge: + description: 'Run in test mode, pushing to a test branch.' + required: true + default: false + type: boolean + +jobs: + sync-subtrees: + if: startsWith(github.repository, 'usgs-coupled-subtrees/') + runs-on: ubuntu-latest + env: + CI_SERVER_HOST: github.com + GROUP: usgs-coupled + GH_TOKEN: ${{ secrets.WORKFLOW_PAT }} + steps: + - name: Run sync-subtrees-action + uses: usgs-coupled-subtrees/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 }}