Skip to content

Commit 4046996

Browse files
authored
Merge pull request #6921 from waleed7715/my-github-actions-v3
Add workflow_dispatch for local testing and fix PR triggers
2 parents cbb2b5b + ee143e0 commit 4046996

7 files changed

Lines changed: 28 additions & 42 deletions

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ name: Build and Test
99
on:
1010
pull_request:
1111
push:
12-
branches-ignore:
13-
- gh-pages
14-
- trying
15-
- staging
16-
tags-ignore:
17-
- stable
12+
branches:
13+
- master
14+
- 'release**'
15+
workflow_dispatch:
1816

1917
jobs:
2018
configure-core-core_local-components:

.github/workflows/check-circular-deps.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ name: Check Circular Dependencies
99
on:
1010
pull_request:
1111
push:
12-
branches-ignore:
13-
- gh-pages
14-
- trying
15-
- staging
16-
tags-ignore:
17-
- stable
12+
branches:
13+
- master
14+
- 'release**'
15+
workflow_dispatch:
1816

1917
jobs:
2018
check-circular-deps:

.github/workflows/check-formatting.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ name: Check Formatting
99
on:
1010
pull_request:
1111
push:
12-
branches-ignore:
13-
- gh-pages
14-
- trying
15-
- staging
16-
tags-ignore:
17-
- stable
12+
branches:
13+
- master
14+
- 'release**'
15+
workflow_dispatch:
1816

1917
jobs:
2018
clang-format:

.github/workflows/check-module-cmakelists.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ name: Check Modules CMakeLists
99
on:
1010
pull_request:
1111
push:
12-
branches-ignore:
13-
- gh-pages
14-
- trying
15-
- staging
16-
tags-ignore:
17-
- stable
12+
branches:
13+
- master
14+
- 'release**'
15+
workflow_dispatch:
1816

1917
jobs:
2018
check-module-cmakelists:

.github/workflows/configure-test-combination.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ name: Configure Test Combinations
99
on:
1010
pull_request:
1111
push:
12-
branches-ignore:
13-
- gh-pages
14-
- trying
15-
- staging
16-
tags-ignore:
17-
- stable
12+
branches:
13+
- master
14+
- 'release**'
15+
workflow_dispatch:
1816

1917
jobs:
2018
configure-test-combinations:

.github/workflows/documentation.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ name: Documentation Build
99
on:
1010
pull_request:
1111
push:
12-
branches-ignore:
13-
- gh-pages
14-
- trying
15-
- staging
16-
tags-ignore:
17-
- stable
12+
branches:
13+
- master
14+
- 'release**'
15+
workflow_dispatch:
1816

1917
jobs:
2018
build-documentation:

.github/workflows/inspect.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ name: Inspect
99
on:
1010
pull_request:
1111
push:
12-
branches-ignore:
13-
- gh-pages
14-
- trying
15-
- staging
16-
tags-ignore:
17-
- stable
12+
branches:
13+
- master
14+
- 'release**'
15+
workflow_dispatch:
1816

1917
jobs:
2018
inspect:

0 commit comments

Comments
 (0)