v1.14.1-version-release Merge updated release notes into main #2
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
name: Tag/release | |
on: | |
# Triggers the workflow when pull request closed (either closed | |
# as non-planned, or actually approved and merged.) | |
pull_request: | |
types: | |
- closed | |
branch: main | |
# Allows run of this workflow manually from the Actions tab | |
# Must be merged to default branch before it will be available | |
# to manually run. | |
workflow_dispatch: | |
jobs: | |
tag-release: | |
name: Tag/release | |
# You do not appear to be able to use variables in the "uses" field. | |
uses: NRLMMD-GEOIPS/geoips_ci/.github/workflows/reusable-tag-and-release.yaml@main | |
# Only run this if the pull request was merged, not just closed. | |
if: github.event.pull_request.merged == true | |
permissions: | |
contents: write | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |