Skip to content

Commit

Permalink
Remove concurrency constraint and add comment
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Dec 20, 2024
1 parent a6d30be commit c739c42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Bazel CI
on: [push, pull_request, workflow_dispatch]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on: [push, pull_request, workflow_dispatch]

jobs:
test:
Expand All @@ -14,6 +11,9 @@ jobs:
".",
"bazel/integration_test",
]
# Explicitly exclude build/test configurations where bzlmod is disabled.
# Since xacro only supports bzlmod, these will always fail.
# Remove these exclusions when workspace support is dropped.
exclude: |
[
{"folder": ".", "bzlmodEnabled": false},
Expand Down

0 comments on commit c739c42

Please sign in to comment.