Skip to content

Commit

Permalink
allow manual workflows trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolcl committed Jul 7, 2024
1 parent 6bab495 commit 644e2a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cmake-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches: [ "devel", "master" ]
pull_request:
branches: [ "devel", "master" ]
workflow_dispatch:
branches: [ "master", "devel" ]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ name: "Linux Build and Test"

on:
push:
branches:
- master
- devel
branches: [ "master", "devel" ]
pull_request:
branches:
- master
- devel
branches: [ "master", "devel" ]
workflow_dispatch:
branches: [ "master", "devel" ]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand Down

0 comments on commit 644e2a5

Please sign in to comment.