Skip to content

Commit

Permalink
Fix: Rename tox job and remove pre-commit
Browse files Browse the repository at this point in the history
This commit 0ff7cba previously removed the tox job
however did not remove the depenencies.

This causes the verify workflow to fail with the following message:
Invalid workflow file: .github/workflows/gerrit-verify.yaml#L85
The workflow is not valid.
.github/workflows/gerrit-verify.yaml (Line: 85, Col: 22):
Job 'vote' depends on unknown job 'pre-commit'.
.github/workflows/gerrit-verify.yaml (Line: 85, Col: 34):
Job 'vote' depends on unknown job 'tox'.

Issue: RELENG-5138
Change-Id: I079fa354d70046df1083c08166f33b9ce2073d15
Signed-off-by: Anil Belur <[email protected]>
  • Loading branch information
askb committed Feb 20, 2024
1 parent f216bde commit 6af1c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gerrit-verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

vote:
if: ${{ always() }}
needs: [prepare, pre-commit, tox]
needs: [prepare, tox-verify]
runs-on: ubuntu-latest
steps:
- uses: technote-space/workflow-conclusion-action@v3
Expand Down

0 comments on commit 6af1c0c

Please sign in to comment.