File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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 \
You can’t perform that action at this time.
0 commit comments