Update 1deg_jra55_iaf to restart repro and passing QA checks (#75) #20
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
# This workflow is used to convert the `.version` in the `metadata.yaml` file | |
# into a valid `git tag` on push to `main`. | |
# We use the `.version` field in that file to denote the version of the config | |
# once a PR is merged. | |
name: Call pr-3-bump-tag.yml | |
on: | |
push: | |
branches: | |
- 'release-*' | |
paths: | |
- 'metadata.yaml' | |
jobs: | |
call: | |
# We simply call the workflow on main so we don't have to propagate CI changes to | |
# multiple config branches all the time. | |
uses: access-nri/access-om2-configs/.github/workflows/pr-3-bump-tag.yml@main | |
secrets: inherit | |
permissions: | |
contents: write |