Skip to content

Commit

Permalink
Do not run actions on merge to master or develop
Browse files Browse the repository at this point in the history
  • Loading branch information
smeyer198 committed Nov 20, 2024
1 parent c138f30 commit da15cd0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ description: Basic build and tests for the submodules on each push and pull requ

on:
push:
branches-ignore:
- master
- develop
pull_request:
types: [opened, reopened]

Expand All @@ -24,7 +27,7 @@ jobs:

# Build the HeadlessAndroidScanner module and run its tests
build-and-test-scanner-android:
runs-on: macos-latest
runs-on: ubuntu-latest

steps:
- name: Checkout source code
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Test Internal Action

on: push
on:
push:
branches-ignore:
- master
- develop

jobs:
internal_action:
Expand Down

0 comments on commit da15cd0

Please sign in to comment.