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 }}