Skip to content

Commit

Permalink
Restrict workflow runs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-bc committed Dec 7, 2023
1 parent 156b265 commit e827e6a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ name: "CodeQL Security Scan"

on:
push:
branches: [ master, devel ]
branches: [ devel ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master, devel ]
branches: [ devel ]

jobs:
analyze:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/fprime-gds-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: fprime-gds tests

on: [pull_request, push]
on:
push:
branches: [ devel ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ devel ]

jobs:
Unit-tests:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/gds-cli-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: GDS CLI Tests

on: [pull_request, push]
on:
push:
branches: [ devel ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ devel ]

env:
DICTIONARY: ./.github/resources/RefTopologyAppDictionary.xml
Expand Down

0 comments on commit e827e6a

Please sign in to comment.