From 396d81f2727fd7264f9c682ee94a47f94af1f1c4 Mon Sep 17 00:00:00 2001 From: vdovhanych Date: Fri, 6 May 2022 09:48:21 +0200 Subject: [PATCH] ci: remove automation for adding issues to backlog project --- .github/workflows/project_automation.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/project_automation.yml b/.github/workflows/project_automation.yml index fbc4aba60..00c7d9936 100644 --- a/.github/workflows/project_automation.yml +++ b/.github/workflows/project_automation.yml @@ -12,14 +12,6 @@ jobs: gh-automate-projects: runs-on: ubuntu-latest steps: - - name: Add new issue to the Backlog 🗂 project board - if: github.event_name == 'issues' && github.event.action == 'opened' - run: | - gh issue edit $ISSUE --add-project "Backlog 🗂" - env: - ISSUE: ${{github.event.issue.html_url}} - GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} - - name: Add new pull request to the Pull Requests project board if: github.event_name == 'pull_request' && github.event.action == 'opened' run: gh pr edit $PULL_REQUEST --add-project "Pull Requests"