diff --git a/.github/workflows/update_dependencies.yml b/.github/workflows/update_dependencies.yml new file mode 100644 index 0000000..891eb78 --- /dev/null +++ b/.github/workflows/update_dependencies.yml @@ -0,0 +1,20 @@ +name: Update Dependencies + +on: + schedule: + - cron: '0 12 * * *' + +jobs: + update: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: "yarn up -R '*'" + + - name: PR + uses: technote-space/create-pr-action@v2 + with: + COMMIT_MESSAGE: Updated dependencies + PR_BRANCH_NAME: automatic_dependency_updates + PR_TITLE: Update dependencies + PR_BODY: Automatic `yarn up` based dependencies update