Skip to content

Commit

Permalink
chore: add dependabolt GitHub Action workflow (#1123)
Browse files Browse the repository at this point in the history
Automates upgrading dependencies in bolt packages.
  • Loading branch information
malept authored Sep 2, 2019
1 parent b424380 commit 3b00508
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/dependabolt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Dependabolt

on: [create]

jobs:
dependabolt:
runs-on: ubuntu-latest
steps:
- id: checkout_action
if: github.event.ref_type == 'branch' && startsWith(github.event.ref, 'dependabot/')
uses: actions/checkout@v1
- name: Run dependabolt
if: success()
uses: malept/github-action-dependabolt@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3b00508

Please sign in to comment.