From 0fa2437fe3db2728e07acdf8397bd4045c36420b Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Sun, 1 Sep 2019 18:38:12 -0700 Subject: [PATCH] chore: add dependabolt GitHub Action workflow Automates upgrading dependencies in bolt packages. --- .github/workflows/dependabolt.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/dependabolt.yml diff --git a/.github/workflows/dependabolt.yml b/.github/workflows/dependabolt.yml new file mode 100644 index 0000000000..5ab7a3888b --- /dev/null +++ b/.github/workflows/dependabolt.yml @@ -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 }}