-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from ACCESS-NRI/9-initial-checksum-truth
Added new `workflow_dispatch` workflow for initial creation of checksums
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Generate Initial Checksums | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
config-branch-name: | ||
type: string | ||
required: true | ||
description: The configuration branch that will be run that will generate the checksums. | ||
commit-checksums: | ||
type: boolean | ||
required: true | ||
description: Whether to commit the checksums to the target branch once generated. | ||
committed-checksum-location: | ||
type: string | ||
required: false | ||
default: ./testing/checksums | ||
description: "If `commit-checksums`: Where in the repository the generated checksums should be committed to." | ||
committed-checksum-tag: | ||
type: string | ||
required: false | ||
description: "If `commit-checksums`: An optional tag to attach to the committed checksums" | ||
jobs: | ||
generate-checksums: | ||
name: Generate Checksums | ||
uses: access-nri/reproducibility/.github/workflows/generate-initial-checksums.yml@main | ||
with: | ||
model-name: access-om2 | ||
config-branch-name: ${{ inputs.config-branch-name }} | ||
commit-checksums: ${{ inputs.commit-checksums }} | ||
committed-checksum-location: ${{ inputs.committed-checksum-location }} | ||
committed-checksum-tag: "${{ inputs.config-branch-name }}-1.0" | ||
environment-name: "Gadi Initial Checksum" | ||
permissions: | ||
contents: write | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters