Skip to content

Commit 8bf229b

Browse files
authored
Enable manual triggering for workflows (#3437)
* Enable manual triggering for dotnetcore workflow Added support for manual triggering of the workflow. * Enable manual triggering for CodeQL analysis Added manual triggering option for CodeQL workflow. * Enable manual trigger for AOT Check workflow Add manual triggering option for AOT Check workflow * Add dev8x branch to workflow triggers * Add 'dev8x' branch to CodeQL analysis workflow * Add 'dev8x' branch to workflow triggers
1 parent d7421db commit 8bf229b

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/aot-check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: "AOT Check"
22

33
on:
4+
workflow_dispatch: # Allows manual triggering of workflow
45
push:
5-
branches: [ "dev" ]
6+
branches: [ "dev", "dev8x" ]
67
pull_request:
78
types:
89
- opened
910
- synchronize
1011
- reopened
1112
- ready_for_review
12-
branches: [ "dev" ]
13+
branches: [ "dev", "dev8x" ]
1314

1415
jobs:
1516
analyze:

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: "CodeQL"
22

33
on:
4+
workflow_dispatch: # Allows manual triggering of workflow
45
push:
5-
branches: [ "dev" ]
6+
branches: [ "dev", "dev8x" ]
67
pull_request:
78
types:
89
- opened
910
- synchronize
1011
- reopened
1112
- ready_for_review
12-
branches: [ "dev" ]
13+
branches: [ "dev", "dev8x" ]
1314

1415
jobs:
1516
analyze:

.github/workflows/dotnetcore.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ permissions:
55
pull-requests: write
66

77
on:
8+
workflow_dispatch: # Allows manual triggering of workflow
89
push:
910
branches:
1011
- dev
12+
- dev8x
1113
pull_request:
1214
types:
1315
- opened
@@ -16,6 +18,7 @@ on:
1618
- ready_for_review
1719
branches:
1820
- dev
21+
- dev8x
1922

2023
env:
2124
TargetNetNext: False

0 commit comments

Comments
 (0)