Skip to content

Commit

Permalink
Add workflows to check base branch and set stable branch (#341)
Browse files Browse the repository at this point in the history
Co-authored-by: Karl Higley <[email protected]>
  • Loading branch information
oliverholworthy and karlhigley authored May 4, 2023
1 parent b722bd6 commit b150e23
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/check-base-branch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Require Development Base Branch

on:
pull_request:
types: [synchronize, opened, reopened, labeled, unlabeled]

jobs:
check:
uses: NVIDIA-Merlin/.github/.github/workflows/check-base-branch.yml@main
10 changes: 10 additions & 0 deletions .github/workflows/set-stable-branch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Set Stable Branch

on:
workflow_dispatch:
release:
types: [published, deleted]

jobs:
set-stable-branch:
uses: NVIDIA-Merlin/.github/.github/workflows/set-stable-branch.yaml@main

0 comments on commit b150e23

Please sign in to comment.