From a3bad21597ec7e4be316b383e3168ea2b02bea72 Mon Sep 17 00:00:00 2001 From: Jason Nall Date: Sun, 30 Oct 2022 14:13:10 -0400 Subject: [PATCH] Add renovate changeset workflow. --- .github/workflows/dependencies.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/dependencies.yml diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml new file mode 100644 index 00000000..ed4bd7e7 --- /dev/null +++ b/.github/workflows/dependencies.yml @@ -0,0 +1,18 @@ +name: dependencies +on: [pull_request] +jobs: + changeset: + runs-on: ubuntu-latest + + if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/renovate') + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Create/Update Changesets + uses: 'the-guild-org/changesets-dependencies-action@v1.1.0' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}