Skip to content

Commit

Permalink
Apply other Actions to release branches.
Browse files Browse the repository at this point in the history
Applying other Github Actions that run against the master branch to
release branches also.
  • Loading branch information
robertbartel committed Oct 15, 2024
1 parent f8d72e6 commit 5570381
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/Example_model_run.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Build and Run NGEN on example data

on:
push:
branches: [ release-* ]
pull_request:
branches: [ master ]
branches: [ master, release-* ]
jobs:
Build_and_Run_Model:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Documentation
# events but only for the master branch
on:
push:
branches: [ master ]
branches: [ master, release-* ]
#pull_request:
#branches: [ master ]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/module_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Module Integration Tests
# Controls when the action will run.
on:
push:
branches: [ master, dev, notreal ]
branches: [ master, dev, notreal, release-* ]
pull_request:
branches: [ master, dev, notreal ]
branches: [ master, dev, notreal, release-* ]
workflow_dispatch:

env:
Expand Down

0 comments on commit 5570381

Please sign in to comment.