diff --git a/.github/workflows/update-leather-packages.yml b/.github/workflows/update-leather-packages.yml deleted file mode 100644 index 5f549126fd..0000000000 --- a/.github/workflows/update-leather-packages.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Update Leather.io packages - -on: - workflow_dispatch: - repository_dispatch: - types: [leather-deps-updated] - -jobs: - update-leather-deps: - runs-on: ubuntu-24.04 - - steps: - - uses: actions/checkout@v4 - with: - ref: dev - token: ${{ secrets.LEATHER_BOT }} - - - uses: ./.github/actions/provision - - - name: Update @leather.io/* packages - id: update-packages - run: echo output=$(pnpm update "@leather.io/*" --latest | grep -v '^Progress') >> $GITHUB_OUTPUT - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 - with: - token: ${{ secrets.LEATHER_BOT }} - branch: 'chore-update-leather-packages' - commit-message: 'ci: update leather.io packages' - title: '[bot] ci: update npm packages' - committer: 'leather-bot ' - author: 'leather-bot ' - body: | - Updating packages - - If the CI build fails it's likely that there have been breaking changes upstream in the monorepo. - A Leather dev should checkout the repo and fix these before merging the pull request. - -
- - Output - - ${{ steps.update-packages.outputs.output }} - -