From 27d0d2e665444286dcc8d3a61c9198083d4744f9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Sep 2025 15:00:12 +0000 Subject: [PATCH 1/3] Initial plan Signed-off-by: Victor Martinez From dbaada8e3e8ee9e0d617100c94b88a63b114f4ad Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Sep 2025 18:57:29 +0000 Subject: [PATCH 2/3] Replace tibdex/github-app-token with actions/create-github-app-token Co-authored-by: v1v <2871786+v1v@users.noreply.github.com> Signed-off-by: Victor Martinez --- .github/workflows/add-to-project.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/add-to-project.yaml b/.github/workflows/add-to-project.yaml index 5265988c..7975f4a7 100644 --- a/.github/workflows/add-to-project.yaml +++ b/.github/workflows/add-to-project.yaml @@ -16,15 +16,12 @@ jobs: steps: - name: Get token id: get_token - uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 + uses: actions/create-github-app-token@v1.11.1 with: - app_id: ${{ secrets.OBS_AUTOMATION_APP_ID }} - private_key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} - permissions: >- - { - "organization_projects": "write", - "issues": "read" - } + app-id: ${{ secrets.OBS_AUTOMATION_APP_ID }} + private-key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} + permission-organization-projects: write + permission-issues: read - uses: actions/add-to-project@v1.0.2 with: From baa847b4d10bf38fbd29024a9f49964187ff6e23 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Mon, 22 Sep 2025 12:21:29 +0200 Subject: [PATCH 3/3] Update .github/workflows/add-to-project.yaml Signed-off-by: Victor Martinez --- .github/workflows/add-to-project.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-to-project.yaml b/.github/workflows/add-to-project.yaml index 7975f4a7..e72b7639 100644 --- a/.github/workflows/add-to-project.yaml +++ b/.github/workflows/add-to-project.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: Get token id: get_token - uses: actions/create-github-app-token@v1.11.1 + uses: actions/create-github-app-token@v2 with: app-id: ${{ secrets.OBS_AUTOMATION_APP_ID }} private-key: ${{ secrets.OBS_AUTOMATION_APP_PEM }}