Skip to content

Upstream mom6 updates and applying patches #176

Upstream mom6 updates and applying patches

Upstream mom6 updates and applying patches #176

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
branches:
- main
- dev
- backport/*.*
paths:
- config/**
- spack.yaml
issue_comment:
types:
- created
- edited
jobs:
pr-ci:
name: CI
# This job is responsible for checks and prerelease deployments
# that happen when a PR is modified or opened
if: >-
(github.event_name == 'pull_request' && github.event.action != 'closed') ||
(github.event_name == 'issue_comment' && startsWith(github.event.comment.body, '!redeploy'))
uses: access-nri/build-cd/.github/workflows/ci.yml@v3
with:
model: ${{ vars.NAME }}
pr: ${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.event.issue.number }}
permissions:
pull-requests: write
contents: write
statuses: write
secrets: inherit # inherit GitHub Deployment Environment secrets
pr-comment:
name: Comment
# This job is responsible for handling Command Comments like
# `!bump` during an open PR
if: github.event_name == 'issue_comment'
uses: access-nri/build-cd/.github/workflows/ci-comment.yml@v3
with:
model: ${{ vars.NAME }}
permissions:
pull-requests: write
contents: write
secrets: inherit
pr-closed:
name: Closed
# This job is responsible for cleaning up the Prereleases after a
# PR is closed
if: github.event_name == 'pull_request' && github.event.action == 'closed'
uses: access-nri/build-cd/.github/workflows/ci-closed.yml@v3
with:
model: ${{ vars.NAME }}
secrets: inherit # inherit GitHub Deployment environment secrets