From daecafb1802caef070e54a662e090d18cf2f336a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Trunk=C3=A1t?= Date: Thu, 7 Sep 2023 10:26:33 +0200 Subject: [PATCH] chore: Removing PR toolkit workflow in favor of an organization wide one --- .github/workflows/pr_toolkit.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/pr_toolkit.yaml diff --git a/.github/workflows/pr_toolkit.yaml b/.github/workflows/pr_toolkit.yaml deleted file mode 100644 index d59bb367..00000000 --- a/.github/workflows/pr_toolkit.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# For more info see: https://github.com/apify/pull-request-toolkit-action/ -name: Apify PR toolkit - -on: - pull_request: - branches: - - master - types: ['opened', 'reopened', 'synchronize', 'labeled', 'unlabeled', 'edited', 'ready_for_review'] # The first 3 are default. - -concurrency: # This is to make sure that it's executed only for the most recent changes of PR. - group: ${{ github.ref }} - cancel-in-progress: true - -jobs: - apify-pr-toolkit: - runs-on: ubuntu-latest - steps: - - name: run pull-request-toolkit action - uses: apify/pull-request-toolkit-action@main - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - org-token: ${{ secrets.PULL_REQUEST_TOOLKIT_ACTION_GITHUB_TOKEN }} - zenhub-token: ${{ secrets.PULL_REQUEST_TOOLKIT_ACTION_ZENHUB_TOKEN }}