Skip to content

Commit e67250c

Browse files
committed
Better test step names
1 parent 87851ee commit e67250c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Build action container
1717
run: docker build -t action_container .
1818

19-
- name: Run our action with default options
19+
- name: "Test: default options"
2020
run: |
2121
docker run --rm -t \
2222
-e GITHUB_REPOSITORY \
@@ -25,19 +25,19 @@ jobs:
2525
action_container \
2626
--github-token="${{ github.token }}"
2727
28-
- name: Set for deletion all branches except for deletable-but-ignored
28+
- name: "Test: ignore branch 'test_prefix/two'"
2929
run: |
3030
docker run --rm -t \
3131
-e GITHUB_REPOSITORY \
3232
-e GITHUB_OUTPUT \
3333
-v "${GITHUB_OUTPUT}:${GITHUB_OUTPUT}" \
3434
action_container \
35-
--ignore-branches=deletable-but-ignored \
35+
--ignore-branches="test_prefix/two" \
3636
--last-commit-age-days=9 \
3737
--dry-run=yes \
3838
--github-token="${{ github.token }}"
3939
40-
- name: Set for deletion all branches named `test_prefix/*` except for `test_prefix/two`
40+
- name: "Test: allow only`test_prefix/*` except for `test_prefix/two`"
4141
run: |
4242
docker run --rm -t \
4343
-e GITHUB_REPOSITORY \

0 commit comments

Comments
 (0)