From ceffae90e346135c0cefef4d156b7cd60a9f216c Mon Sep 17 00:00:00 2001 From: Andrii Novikov Date: Tue, 19 May 2026 10:43:08 +0300 Subject: [PATCH 1/2] ci: add workflow to add new issues to QuickApps project --- .github/workflows/add-to-project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/add-to-project.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..6c927ea --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,17 @@ +name: Add to Project + +on: + issues: + types: [opened, reopened] + +permissions: {} + +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - name: Add issue to QuickApps project + uses: actions/add-to-project@v2 + with: + project-url: https://github.com/orgs/epam/projects/99 + github-token: ${{ secrets.ACTIONS_BOT_TOKEN }} From 7af98efad79de0fd0b3b189ca3d82aad87889a48 Mon Sep 17 00:00:00 2001 From: Andrii Novikov Date: Tue, 26 May 2026 11:33:46 +0300 Subject: [PATCH 2/2] ci: pin add-to-project action to SHA and drop reopened trigger --- .github/workflows/add-to-project.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml index 6c927ea..73a6f4b 100644 --- a/.github/workflows/add-to-project.yml +++ b/.github/workflows/add-to-project.yml @@ -2,7 +2,7 @@ name: Add to Project on: issues: - types: [opened, reopened] + types: [opened] permissions: {} @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Add issue to QuickApps project - uses: actions/add-to-project@v2 + uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0 with: project-url: https://github.com/orgs/epam/projects/99 github-token: ${{ secrets.ACTIONS_BOT_TOKEN }}