.github/workflows: only run dependabot CI on PR
This commit is contained in:
parent
61e9d47a77
commit
b072bb4166
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,14 @@
|
||||||
name: CI
|
name: CI
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
# See the documentation for more intricate event dispatch here:
|
||||||
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#on
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "!dependabot/*"
|
||||||
|
- "*"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "*"
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build & Lint
|
name: Build & Lint
|
Loading…
Reference in a new issue