From b7d41bad769b6dc0dfa21c7224bbb7d6dd222811 Mon Sep 17 00:00:00 2001 From: Laura Barcziova Date: Fri, 9 Jan 2026 11:03:39 +0100 Subject: [PATCH] Remove adding issues to Kanban board and add PRs to new board We no longer use the board and migrated to Jira. Add PRs to new dedicated PR board. --- .github/workflows/opened-issues-to-the-board.yml | 14 -------------- .github/workflows/opened-prs-to-the-board.yml | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 .github/workflows/opened-issues-to-the-board.yml create mode 100644 .github/workflows/opened-prs-to-the-board.yml diff --git a/.github/workflows/opened-issues-to-the-board.yml b/.github/workflows/opened-issues-to-the-board.yml deleted file mode 100644 index dfb8b25..0000000 --- a/.github/workflows/opened-issues-to-the-board.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Move new issues into the Kanban board - -on: - issues: - types: [opened] - -jobs: - add-new-issue-to-the-kanban-board: - runs-on: ubuntu-latest - steps: - - uses: actions/add-to-project@v0.3.0 - with: - project-url: https://github.com/orgs/packit/projects/7 - github-token: ${{ secrets.RELEASEBOT_GITHUB_TOKEN }} diff --git a/.github/workflows/opened-prs-to-the-board.yml b/.github/workflows/opened-prs-to-the-board.yml new file mode 100644 index 0000000..5301d63 --- /dev/null +++ b/.github/workflows/opened-prs-to-the-board.yml @@ -0,0 +1,14 @@ +name: Move PRs into the PRs board + +on: + pull_request_target: + +jobs: + add-pr-to-the-prs-board: + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.3.0 + with: + project-url: https://github.com/orgs/packit/projects/14 + github-token: ${{ secrets.RELEASEBOT_GITHUB_TOKEN }}