Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit f877689

Browse files
committed
chore: Don't double build DependaBot PRs
These are submitted by PR, so branches don't need to build
1 parent b48fac4 commit f877689

File tree

6 files changed

+24
-4
lines changed

6 files changed

+24
-4
lines changed

.github/workflows/alpine.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build bindings for Alpine releases
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore:
6+
- "dependabot/**"
7+
pull_request:
48

59
jobs:
610
build:

.github/workflows/coverage.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Coverage
22

33
on:
44
push:
5+
branches-ignore:
6+
- "dependabot/**"
57
paths:
68
- ".nycrc.json"
79
- "**/*.js"

.github/workflows/lint-js.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Lint JS
22

33
on:
44
push:
5+
branches-ignore:
6+
- "dependabot/**"
57
paths:
68
- "**/*.js"
79
- ".eslintrc.json"

.github/workflows/linux.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build bindings for Linux releases
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore:
6+
- "dependabot/**"
7+
pull_request:
48

59
jobs:
610
build:

.github/workflows/macos.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build bindings for macOS releases
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore:
6+
- "dependabot/**"
7+
pull_request:
48

59
jobs:
610
build:

.github/workflows/windows.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build bindings for Windows releases
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore:
6+
- "dependabot/**"
7+
pull_request:
48

59
jobs:
610
build:

0 commit comments

Comments
 (0)