Skip to content

Commit

Permalink
build: integrate Dependabolt job into CI (#1403)
Browse files Browse the repository at this point in the history
  • Loading branch information
malept authored Jan 15, 2020
1 parent a7d93bb commit bb0b3dc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 17 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,20 @@ on:
pull_request:

jobs:
build:
dependabolt:
runs-on: ubuntu-latest
steps:
- id: checkout_action
uses: actions/checkout@v2
- name: Run dependabolt
if: github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.ref, 'dependabot/')
uses: docker://malept/gha-dependabolt:2.1.0
env:
DEPENDABOLT_SSH_DEPLOY_KEY: ${{ secrets.DEPENDABOLT_SSH_DEPLOY_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ${{ matrix.os }}
needs: dependabolt
strategy:
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest]
Expand Down Expand Up @@ -87,7 +99,7 @@ jobs:
NODE_INSTALLER: ${{ matrix.node-installer }}
# docs:
# if: github.event_name == 'push' && github.ref == 'refs/heads/master'
# needs: build
# needs: test
# runs-on: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v1
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/dependabolt.yml

This file was deleted.

0 comments on commit bb0b3dc

Please sign in to comment.