Skip to content

Commit

Permalink
fix: add check-labels workflow to CI jobs (#1025)
Browse files Browse the repository at this point in the history
* Add check-labels workflow to CI jobs

To easy the generation of changelogs we're enforcing labels on PRs. In
eclipse-zenoh/ci#128 a new re-usable workflow
was added to check and this PR enables the check.

* fix: add check-labels job to ci status check
  • Loading branch information
diogomatsubara authored Aug 28, 2024
1 parent 0c0e5a1 commit 69beb99
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ env:
RUSTUP_WINDOWS_PATH_ADD_BIN: 1

jobs:
check-labels:
name: Check PR labels
uses: eclipse-zenoh/ci/.github/workflows/check-labels.yml@main
secrets: inherit

check:
name: Lints and doc tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -151,7 +156,7 @@ jobs:
ci:
name: CI status checks
runs-on: ubuntu-latest
needs: [check, test, valgrind, typos]
needs: [check-labels, check, test, valgrind, typos]
if: always()
steps:
- name: Check whether all jobs pass
Expand Down

0 comments on commit 69beb99

Please sign in to comment.