Add dependabot
and skip workflow run on pull request triggered by dependabot because it's NPOTB [skip ci] Signed-off-by: nanake <nanake@users.noreply.github.com>
This commit is contained in:
parent
6fdf7bf4fa
commit
11cb88c0f2
3 changed files with 11 additions and 0 deletions
7
.github/dependabot.yml
vendored
Normal file
7
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
version: 2
|
||||
updates:
|
||||
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -2,6 +2,8 @@ name: Build FFmpeg
|
|||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- 'LICENSE'
|
||||
|
|
2
.github/workflows/pr.yml
vendored
2
.github/workflows/pr.yml
vendored
|
@ -3,6 +3,8 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- 'LICENSE'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue