From 3b0050888fdcc820b00f7630ed9c5c2bd779b022 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Sun, 1 Sep 2019 21:54:58 -0700 Subject: [PATCH] chore: add dependabolt GitHub Action workflow (#1123) 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 }}