Update workflows

This commit is contained in:
Francisco Hodge 2021-08-02 12:56:34 -07:00
parent fe5551156e
commit ebab22c124
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ on: pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') }}
if: ${{ github.actor != 'dependabot[bot]' }}
strategy:
matrix:
node-version: [12.x]

View File

@ -5,7 +5,7 @@ on: pull_request_target
jobs:
build:
runs-on: ${{ matrix.os }}
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
if: ${{ github.actor == 'dependabot[bot]' }}
strategy:
matrix:
node-version: [12.x]