Skip to content

Commit 13b1b06

Browse files
committed
jobs name changed and workflow_dispatch event added
1 parent 772cdc5 commit 13b1b06

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/add-even.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: add-even
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
fibonacci:
6+
add-even:
77
runs-on: ubuntu-latest
88
env:
99
path: homework/add-even/build

.github/workflows/calculate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: calculate
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
fibonacci:
6+
calculate:
77
runs-on: ubuntu-latest
88
env:
99
path: homework/calculate/build

.github/workflows/fibonacci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fibonacci
22

3-
on: [pull_request, workflow_dispatch]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
fibonacci:

.github/workflows/generate-sequence.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: generate-sequence
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
fibonacci:
6+
generate-sequence:
77
runs-on: ubuntu-latest
88
env:
99
path: homework/generate-sequence/build

.github/workflows/max-of-vector.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: max-of-vector
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
fibonacci:
6+
max-of-vector:
77
runs-on: ubuntu-latest
88
env:
99
path: homework/max-of-vector/build

.github/workflows/nwd-nnw.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: nwd-nnw
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
fibonacci:
6+
nwd-nnw:
77
runs-on: ubuntu-latest
88
env:
99
path: homework/nwd-nnw/build

.github/workflows/password-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: password-check
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
fibonacci:
6+
password-check:
77
runs-on: ubuntu-latest
88
env:
99
path: homework/password-check/build

.github/workflows/vector-of-shared-ptrs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: vector-of-shared-ptrs
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
fibonacci:
6+
vector-of-shared-ptrs:
77
runs-on: ubuntu-latest
88
env:
99
path: homework/vector-of-shared-ptrs/build

0 commit comments

Comments
 (0)