Skip to content

Commit

Permalink
Merge branch 'dev' into view-modal-for-groups
Browse files Browse the repository at this point in the history
  • Loading branch information
Jekrimo authored Jan 16, 2024
2 parents 3cbf1d5 + 1573a54 commit ee91fbf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,21 @@ jobs:
components: rustfmt, clippy
- run: cargo clippy --no-deps -- -D warnings
- run: cargo fmt --check

- name: Add linter failing label if cargo workflow fails
if: failure()
uses: buildsville/add-remove-label@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
linter failing
type: add

- name: Remove label if exists and job is successful
if: success()
uses: buildsville/add-remove-label@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
linter failing
type: remove

0 comments on commit ee91fbf

Please sign in to comment.