mirror of
https://github.com/YGGverse/agate.git
synced 2026-04-08 12:35:28 +00:00
ignore dependabot prs for clippy annotations (#78)
This commit is contained in:
parent
aaf3279e95
commit
8813196bdb
3 changed files with 17 additions and 5 deletions
16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
|
|
@ -2,19 +2,31 @@ name: Tests
|
|||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- dependabot/*
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
clippy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/clippy-check@v1
|
||||
- name: Run clippy action to produce annotations
|
||||
# Don't run on dependabot PRs
|
||||
# https://github.com/actions-rs/clippy-check/issues/2#issuecomment-807852653
|
||||
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
|
||||
uses: actions-rs/clippy-check@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
args: --all-features
|
||||
- name: Run clippy manually without annotations
|
||||
if: github.event.pull_request.head.repo.full_name != github.repository || github.actor == 'dependabot[bot]'
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: clippy
|
||||
args: --all-targets -- -D warnings
|
||||
formatting:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue