From c84ef347cca5d366ddea2790646dab5f576e0e3c Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Tue, 14 Nov 2023 07:22:15 +1100 Subject: [PATCH] chore: remove update workflow --- .github/workflows/update.yml | 43 ------------------------------------ 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/update.yml diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml deleted file mode 100644 index 13b7567..0000000 --- a/.github/workflows/update.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Update dependencies - -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * *" # Weekly - -jobs: - update: - runs-on: ubuntu-latest - - services: - redis: - image: redis - ports: - # Maps port 6379 on service container to the host - - 6379:6379 - - steps: - - name: Setup repo - uses: actions/checkout@v4 - - - name: Setup Deno - uses: denoland/setup-deno@v1 - - - name: Update dependencies - run: deno task update - - - name: Create lcov file - run: deno task cov:gen - - - name: Upload coverage - uses: codecov/codecov-action@v3 - with: - name: ${{ matrix.os }} - files: cov.lcov - - - name: Create pull request - uses: peter-evans/create-pull-request@v5 - with: - title: "chore: update dependencies" - delete-branch: true - \ No newline at end of file