Skip to content

Commit

Permalink
Merge pull request #256 from FabienArcellier/32-disable-continuous-in…
Browse files Browse the repository at this point in the history
…tegration-on-branch-except-for-master-and-dev

chore: disable continuous integration on branch except for master and dev
  • Loading branch information
ramedina86 authored Feb 21, 2024
2 parents 6e427d5 + 774625a commit e0f7401
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: ci-macos

on: [ push, pull_request ]
on:
push:
branches:
- 'master'
- 'dev'
pull_request:
branches:
- '**'

jobs:
build:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: ci-windows

on: [ push, pull_request ]
on:
push:
branches:
- 'master'
- 'dev'
pull_request:
branches:
- '**'

jobs:
build:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: ci

on: [ push, pull_request ]
on:
push:
branches:
- 'master'
- 'dev'
pull_request:
branches:
- '**'

jobs:
build:
Expand Down

0 comments on commit e0f7401

Please sign in to comment.