From d14a8b8967bb6171f8314a8444cea4b9f2b67953 Mon Sep 17 00:00:00 2001 From: Big Andy <8012398+big-andy-coates@users.noreply.github.com> Date: Wed, 30 Aug 2023 20:21:22 +0100 Subject: [PATCH] Remove playground workflow --- .github/workflows/payground.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/payground.yml diff --git a/.github/workflows/payground.yml b/.github/workflows/payground.yml deleted file mode 100644 index f99785d..0000000 --- a/.github/workflows/payground.yml +++ /dev/null @@ -1,32 +0,0 @@ -# A Workflow for messing around in. - -name: Playgroup -on: - pull_request: - branches: [ main ] - -permissions: - contents: write - pull-requests: write - -jobs: - dependabot: - runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} - steps: - - name: Dependabot metadata - id: metadata - uses: dependabot/fetch-metadata@v1 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - name: Approve PR - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: Enable auto-merge for Dependabot PRs - if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }} - run: gh pr merge --auto --squash "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}