Skip to content

Commit 71cd7a6

Browse files
authored
Merge pull request #484 from sir-gon/develop
[CONFIG] [Github Actions] trigger events changed.
2 parents 359ba06 + 273ed1e commit 71cd7a6

File tree

8 files changed

+20
-12
lines changed

8 files changed

+20
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ name: "CodeQL"
1515

1616
on: # yamllint disable-line rule:truthy
1717
push:
18-
branches: ["main", "develop", "feature/*"]
18+
branches: ["main"]
1919
pull_request:
2020
# The branches below must be a subset of the branches above
2121
branches: ["main"]
22+
workflow_dispatch:
2223
schedule:
2324
# ┌───────────── minute (0 - 59)
2425
# │ ┌───────────── hour (0 - 23)

.github/workflows/docker-image.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ name: Docker Image CI
44

55
on: # yamllint disable-line rule:truthy
66
push:
7-
branches: ["main", "develop", "feature/*"]
7+
branches: ["main"]
88
pull_request:
99
branches: ["main"]
10+
workflow_dispatch:
1011

1112
env:
1213
IMAGE_NAME: algorithm-exercises-js

.github/workflows/eslint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ name: ESLint
1414

1515
on: # yamllint disable-line rule:truthy
1616
push:
17-
branches: ["main", "develop", "feature/*"]
17+
branches: ["main"]
1818
pull_request:
1919
# The branches below must be a subset of the branches above
2020
branches: ["main"]
21+
workflow_dispatch:
2122
schedule:
2223
# ┌───────────── minute (0 - 59)
2324
# │ ┌───────────── hour (0 - 23)

.github/workflows/markdown-lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ name: Markdown Lint
44

55
on: # yamllint disable-line rule:truthy
66
push:
7-
branches: ["main", "develop", "feature/*"]
7+
branches: ["main"]
88
pull_request:
9+
# The branches below must be a subset of the branches above
910
branches: ["main"]
11+
workflow_dispatch:
1012

1113
jobs:
1214
build:

.github/workflows/node-coverage.js.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ name: Node.js CI Coverage
33

44
on: # yamllint disable-line rule:truthy
55
push:
6-
branches: ["main", "develop", "feature/*"]
6+
branches: ["main"]
77
pull_request:
8+
# The branches below must be a subset of the branches above
89
branches: ["main"]
10+
workflow_dispatch:
911

1012
jobs:
1113
build:

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ name: Node.js CI Tests
44

55
on: # yamllint disable-line rule:truthy
66
push:
7-
branches: ["main", "develop", "feature/*"]
7+
branches: ["main"]
88
pull_request:
9+
# The branches below must be a subset of the branches above
910
branches: ["main"]
11+
workflow_dispatch:
1012

1113
jobs:
1214
build:
13-
1415
runs-on: ubuntu-latest
15-
1616
strategy:
1717
matrix:
1818
os: [

.github/workflows/snyk-code.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@
88
name: Snyk Code analysis
99

1010
on: # yamllint disable-line rule:truthy
11-
push:
12-
branches: ["main", "develop", "feature/*"]
1311
pull_request:
14-
branches: ["main"]
12+
push:
13+
workflow_dispatch:
1514

1615
jobs:
1716
security:

.github/workflows/yamllint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ name: YAML lint
33

44
on: # yamllint disable-line rule:truthy
55
push:
6-
branches: ["main", "develop", "feature/*"]
6+
branches: ["main"]
77
pull_request:
8+
# The branches below must be a subset of the branches above
89
branches: ["main"]
10+
workflow_dispatch:
911

1012
jobs:
1113
lint:

0 commit comments

Comments
 (0)