mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
Squashed 'phreeqc3-doc/' changes from 394240f2..05a4c62f
05a4c62f Add workflows and configuration for syncing and linting subtrees git-subtree-dir: phreeqc3-doc git-subtree-split: 05a4c62f48558d3d9c4b3dccf6ea4f2bb1f3b8e2
This commit is contained in:
parent
dcf01e46e9
commit
0a5c6fc279
1
.github/subtrees.json
vendored
Normal file
1
.github/subtrees.json
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
[]
|
||||||
10
.github/superprojects.json
vendored
Normal file
10
.github/superprojects.json
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"usgs-coupled-subtrees/phreeqc3-doc": {
|
||||||
|
"superprojects": [
|
||||||
|
"usgs-coupled-subtrees/iphreeqc",
|
||||||
|
"usgs-coupled-subtrees/iphreeqccom",
|
||||||
|
"usgs-coupled-subtrees/phast3-doc",
|
||||||
|
"usgs-coupled-subtrees/phreeqc3"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
19
.github/workflows/lint-subtrees.yml
vendored
Normal file
19
.github/workflows/lint-subtrees.yml
vendored
Normal file
@ -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 }}
|
||||||
16
.github/workflows/lint-superprojects.yml
vendored
Normal file
16
.github/workflows/lint-superprojects.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
name: Lint superprojects.json
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '.github/superprojects.json'
|
||||||
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint-superprojects:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: usgs-coupled-subtrees/sync-subtrees-action/lint-superprojects/@main
|
||||||
|
with:
|
||||||
|
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
37
.github/workflows/subtree.yml
vendored
Normal file
37
.github/workflows/subtree.yml
vendored
Normal file
@ -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 }}
|
||||||
Loading…
x
Reference in New Issue
Block a user