Skip to content

Commit

Permalink
build: disable builds for branches opened by dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
hydrosquall committed Jul 19, 2021
1 parent f2acdcf commit 9e0ff6e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish-auto.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Publish Auto

on: [push]
branches-ignore:
# No canary deploys for branches opened by dependabot
- 'dependabot/**'

jobs:
publish:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') && github.actor!= 'depbot'"

name: Make a release and publish to NPM
steps:
Expand Down

0 comments on commit 9e0ff6e

Please sign in to comment.