Skip to content

Commit 68ef348

Browse files
authored
Merge pull request #482 from sir-gon/develop
[CONFIG] [Github Actions] trigger events changed.
2 parents 359ba06 + ae2c715 commit 68ef348

File tree

8 files changed

+8
-19
lines changed

8 files changed

+8
-19
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
name: "CodeQL"
1515

1616
on: # yamllint disable-line rule:truthy
17-
push:
18-
branches: ["main", "develop", "feature/*"]
1917
pull_request:
2018
# The branches below must be a subset of the branches above
2119
branches: ["main"]

.github/workflows/docker-image.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
name: Docker Image CI
44

55
on: # yamllint disable-line rule:truthy
6-
push:
7-
branches: ["main", "develop", "feature/*"]
86
pull_request:
97
branches: ["main"]
8+
workflow_dispatch:
109

1110
env:
1211
IMAGE_NAME: algorithm-exercises-js

.github/workflows/eslint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ name: ESLint
1313

1414

1515
on: # yamllint disable-line rule:truthy
16-
push:
17-
branches: ["main", "develop", "feature/*"]
1816
pull_request:
1917
# The branches below must be a subset of the branches above
2018
branches: ["main"]
19+
workflow_dispatch:
2120
schedule:
2221
# ┌───────────── minute (0 - 59)
2322
# │ ┌───────────── hour (0 - 23)

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
name: Markdown Lint
44

55
on: # yamllint disable-line rule:truthy
6-
push:
7-
branches: ["main", "develop", "feature/*"]
86
pull_request:
97
branches: ["main"]
8+
workflow_dispatch:
109

1110
jobs:
1211
build:

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
name: Node.js CI Coverage
33

44
on: # yamllint disable-line rule:truthy
5-
push:
6-
branches: ["main", "develop", "feature/*"]
75
pull_request:
86
branches: ["main"]
7+
workflow_dispatch:
98

109
jobs:
1110
build:

.github/workflows/node.js.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33
name: Node.js CI Tests
44

55
on: # yamllint disable-line rule:truthy
6-
push:
7-
branches: ["main", "develop", "feature/*"]
86
pull_request:
97
branches: ["main"]
8+
workflow_dispatch:
109

1110
jobs:
1211
build:
13-
1412
runs-on: ubuntu-latest
15-
1613
strategy:
1714
matrix:
1815
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: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
name: YAML lint
33

44
on: # yamllint disable-line rule:truthy
5-
push:
6-
branches: ["main", "develop", "feature/*"]
75
pull_request:
86
branches: ["main"]
7+
workflow_dispatch:
98

109
jobs:
1110
lint:

0 commit comments

Comments
 (0)