Skip to content

Commit a41b62a

Browse files
authored
Merge pull request #4376 from kolyshkin/simplify-branch-protection
ci/gha: add all-done jobs
2 parents 41831e7 + 2cd24a4 commit a41b62a

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,3 +233,11 @@ jobs:
233233
env:
234234
EXTRA_BUILDTAGS: ${{ matrix.dmz }}
235235
run: sudo -E PATH="$PATH" -- make GOARCH=386 localunittest
236+
237+
all-done:
238+
needs:
239+
- test
240+
- cross-i386
241+
runs-on: ubuntu-24.04
242+
steps:
243+
- run: echo "All jobs completed"

.github/workflows/validate.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,22 @@ jobs:
234234
cd tests/integration
235235
./bootstrap-get-images.sh > get-images.sh
236236
git diff --exit-code
237+
238+
all-done:
239+
needs:
240+
- cfmt
241+
- codespell
242+
- commit
243+
- compile-buildtags
244+
- deps
245+
- get-images
246+
- go-fix
247+
- keyring
248+
- lint
249+
- release
250+
- shellcheck
251+
- shfmt
252+
- space-at-eol
253+
runs-on: ubuntu-24.04
254+
steps:
255+
- run: echo "All jobs completed"

0 commit comments

Comments
 (0)