From c809127bc74c41d9721be56709e5b5111f83b205 Mon Sep 17 00:00:00 2001 From: Michael Webb <28074382+mjfwebb@users.noreply.github.com> Date: Wed, 25 Oct 2023 18:20:57 +0200 Subject: [PATCH] Remove the new bug reports workflow (#4202) The actions taken by this workflow are identical to the actions taken in the issue-labeled workflow --- .github/workflows/bug-report.yml | 35 -------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/bug-report.yml diff --git a/.github/workflows/bug-report.yml b/.github/workflows/bug-report.yml deleted file mode 100644 index b283b0e045..0000000000 --- a/.github/workflows/bug-report.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: New bug reports - -on: - issues: - types: [opened] - -jobs: - add-new-bug-reports-to-triage: - if: contains(github.event.issue.labels.*.name, 'bug report') - - runs-on: ubuntu-latest - - steps: - - uses: alex-page/github-project-automation-plus@7ffb872c64bd809d23563a130a0a97d01dfa8f43 # v0.8.3 - with: - project: Bug Triage - column: Bug reports - repo-token: ${{ secrets.NEO4J_TEAM_GRAPHQL_PERSONAL_ACCESS_TOKEN }} - action: add - - name: Add comment - uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0 - with: - token: ${{ secrets.NEO4J_TEAM_GRAPHQL_PERSONAL_ACCESS_TOKEN }} - issue-number: ${{ github.event.issue.number }} - body: | - Many thanks for raising this bug report @${{ github.event.issue.user.login }}. :bug: We will now attempt to reproduce the bug based on the steps you have provided. - - Please ensure that you've provided the necessary information for a minimal reproduction, including but not limited to: - * Type definitions - * Resolvers - * Query and/or Mutation (or multiple) needed to reproduce - - If you have a support agreement with Neo4j, please link this GitHub issue to a new or existing Zendesk ticket. - - Thanks again! :pray: