Skip to content

Commit b2ff390

Browse files
committed
Fix error in GitHub Actions YAML
I had my `on:` section laid out incorrectly; hopefully this fixes that.
1 parent 5ed1b5d commit b2ff390

File tree

4 files changed

+42
-42
lines changed

4 files changed

+42
-42
lines changed

.github/workflows/arraymerge_gtest.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: array-merge-gtest
22

3-
on: push
4-
paths:
5-
- 'array_merge/**'
6-
# We probably want to re-run the checks if the definition of
7-
# `mergesort` changes since this depends on that.
8-
- 'mergesort/mergesort.[ch]'
9-
10-
# This lets us manually trigger this action
11-
# through the GitHub web interface. See
12-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
13-
# for more details.
14-
on: workflow_dispatch
3+
on:
4+
push:
5+
paths:
6+
- 'array_merge/**'
7+
# We probably want to re-run the checks if the definition of
8+
# `mergesort` changes since this depends on that.
9+
- 'mergesort/mergesort.[ch]'
10+
# This lets us manually trigger this action
11+
# through the GitHub web interface. See
12+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
13+
# for more details.
14+
workflow_dispatch:
1515

1616
jobs:
1717
build:

.github/workflows/arraymerge_test_valgrind.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: array-merge-test-valgrind
22

3-
on: push
4-
paths:
5-
- 'array_merge/**'
6-
# We probably want to re-run the checks if the definition of
7-
# `mergesort` changes since this depends on that.
8-
- 'mergesort/mergesort.[ch]'
9-
10-
# This lets us manually trigger this action
11-
# through the GitHub web interface. See
12-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
13-
# for more details.
14-
on: workflow_dispatch
3+
on:
4+
push:
5+
paths:
6+
- 'array_merge/**'
7+
# We probably want to re-run the checks if the definition of
8+
# `mergesort` changes since this depends on that.
9+
- 'mergesort/mergesort.[ch]'
10+
# This lets us manually trigger this action
11+
# through the GitHub web interface. See
12+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
13+
# for more details.
14+
workflow_dispatch:
1515

1616
jobs:
1717
build:

.github/workflows/mergesort_gtest.yml

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

3-
on: push
4-
paths:
5-
- 'mergesort/**'
6-
7-
# This lets us manually trigger this action
8-
# through the GitHub web interface. See
9-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
10-
# for more details.
11-
on: workflow_dispatch
3+
on:
4+
push:
5+
paths:
6+
- 'mergesort/**'
7+
# This lets us manually trigger this action
8+
# through the GitHub web interface. See
9+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
10+
# for more details.
11+
workflow_dispatch:
1212

1313
jobs:
1414
build:

.github/workflows/mergesort_test_valgrind.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: mergesort-test-valgrind
22

3-
on: push
4-
paths:
5-
- 'mergesort/**'
6-
7-
# This lets us manually trigger this action
8-
# through the GitHub web interface. See
9-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
10-
# for more details.
11-
on: workflow_dispatch
3+
on:
4+
push:
5+
paths:
6+
- 'mergesort/**'
7+
# This lets us manually trigger this action
8+
# through the GitHub web interface. See
9+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
10+
# for more details.
11+
workflow_dispatch:
1212

1313
jobs:
1414
build:

0 commit comments

Comments
 (0)