CI: Avoid duplicate action runs on dependabot
This commit is contained in:
parent
fcebac6b16
commit
1ceda731e5
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
exclude_paths:
|
exclude_paths:
|
||||||
- ".github/**"
|
- ".github/**" #
|
||||||
- "ci/build_verilator.sh"
|
- "ci/build_verilator.sh" #
|
||||||
- "include/vltstd/**"
|
- "include/vltstd/**" #
|
||||||
- "nodist/fastcov.py"
|
- "nodist/fastcov.py" #
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ name: build-test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- 'dependabot/**' # Avoid duplicates: only run the PR, not the push
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
|
|
@ -245,7 +247,7 @@ jobs:
|
||||||
- test-2204-clang
|
- test-2204-clang
|
||||||
- lint-py
|
- lint-py
|
||||||
|
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Decide whether the needed jobs succeeded or failed
|
- name: Decide whether the needed jobs succeeded or failed
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@
|
||||||
name: Contributor Agreement
|
name: Contributor Agreement
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- 'dependabot/**' # Avoid duplicates: only run the PR, not the push
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
permissions:
|
permissions:
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@
|
||||||
name: format
|
name: format
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- 'dependabot/**' # Avoid duplicates: only run the PR, not the push
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
permissions:
|
permissions:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue