From 5ea3071c864f64f652f28558c60c5662293dff0b Mon Sep 17 00:00:00 2001 From: vdovhanych Date: Wed, 30 Mar 2022 00:19:17 +0200 Subject: [PATCH] ci: add issues to a new project --- .github/workflows/project_automation.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/project_automation.yml b/.github/workflows/project_automation.yml index 10d975eee..5c4eb66dc 100644 --- a/.github/workflows/project_automation.yml +++ b/.github/workflows/project_automation.yml @@ -14,7 +14,9 @@ jobs: 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 🗂" + run: | + gh issue edit $ISSUE --add-project "Backlog 🗂" + gh issue edit $ISSUE --add-project "Issues Firmware" env: ISSUE: ${{github.event.issue.html_url}} GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }}