Skip to content

Commit

Permalink
Merge pull request #4376 from kolyshkin/simplify-branch-protection
Browse files Browse the repository at this point in the history
ci/gha: add all-done jobs
  • Loading branch information
AkihiroSuda authored Aug 22, 2024
2 parents 41831e7 + 2cd24a4 commit a41b62a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,11 @@ jobs:
env:
EXTRA_BUILDTAGS: ${{ matrix.dmz }}
run: sudo -E PATH="$PATH" -- make GOARCH=386 localunittest

all-done:
needs:
- test
- cross-i386
runs-on: ubuntu-24.04
steps:
- run: echo "All jobs completed"
19 changes: 19 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,22 @@ jobs:
cd tests/integration
./bootstrap-get-images.sh > get-images.sh
git diff --exit-code
all-done:
needs:
- cfmt
- codespell
- commit
- compile-buildtags
- deps
- get-images
- go-fix
- keyring
- lint
- release
- shellcheck
- shfmt
- space-at-eol
runs-on: ubuntu-24.04
steps:
- run: echo "All jobs completed"

0 comments on commit a41b62a

Please sign in to comment.