From 3fce3c5deabadcef420b037083fbeac72fa214df Mon Sep 17 00:00:00 2001 From: Alexej <33332102+4echow@users.noreply.github.com> Date: Wed, 21 Jan 2026 12:02:00 +0100 Subject: [PATCH] Add AUTOMATION_APP_INSTALLATION_ID to workflow --- .github/workflows/project-automation.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/project-automation.yml b/.github/workflows/project-automation.yml index a733bac..4539bb6 100644 --- a/.github/workflows/project-automation.yml +++ b/.github/workflows/project-automation.yml @@ -11,6 +11,8 @@ on: secrets: AUTOMATION_APP_ID: required: true + AUTOMATION_APP_INSTALLATION_ID: + required: true AUTOMATION_APP_PRIVATE_KEY: required: true jobs: @@ -21,8 +23,9 @@ jobs: - uses: leonsteinhaeuser/project-beta-automations@v2.2.1 with: gh_app_ID: ${{ secrets.AUTOMATION_APP_ID }} + gh_app_installation_ID: ${{ secrets.AUTOMATION_APP_INSTALLATION_ID }} gh_app_secret_key: ${{ secrets.AUTOMATION_APP_PRIVATE_KEY }} organization: OpenSlides project_id: 2 resource_node_id: ${{ inputs.resource_node_id }} - status_value: ${{ inputs.status_value }} \ No newline at end of file + status_value: ${{ inputs.status_value }}