Skip to content

Commit

Permalink
Reduce use of CI (#264)
Browse files Browse the repository at this point in the history
Enable manual runs of CI , don't run CI on push except for main, develop
  • Loading branch information
RobertPincus authored Feb 9, 2024
1 parent 37a6558 commit 1e08721
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/containerized-ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Continuous integration in a box
on:
push:
branches-ignore:
- documentation
branches:
- main
- develop
pull_request:
branches-ignore:
- documentation
workflow_dispatch:

jobs:
Containerized-CI:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Continuous Integration
on:
push:
branches-ignore:
- documentation
branches:
- main
- develop
pull_request:
branches-ignore:
- documentation
workflow_dispatch:

defaults:
run:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: GitLab CI
on:
push:
branches-ignore:
- documentation
branches:
- main
- develop
pull_request:
branches-ignore:
- documentation
workflow_dispatch:

defaults:
run:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/self-hosted-ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Self-hosted CI
on:
push:
branches-ignore:
- documentation
branches:
- main
- develop
pull_request:
branches-ignore:
- documentation
workflow_dispatch:

defaults:
run:
Expand Down

0 comments on commit 1e08721

Please sign in to comment.