diff --git a/.github/workflows/project_automations.yml b/.github/workflows/project_automations.yml index bf098af..67b515d 100644 --- a/.github/workflows/project_automations.yml +++ b/.github/workflows/project_automations.yml @@ -20,9 +20,11 @@ jobs: - name: 'Move issue to Todo' uses: leonsteinhaeuser/project-beta-automations@v2.1.0 with: - gh_token: ${{ secrets.PROJECT_PERMISSIONS_TOKEN }} + gh_app_ID: ${{ vars.GH_APP_ID }} + gh_app_installation_ID: ${{ vars.GH_APP_INSTALLATION_ID }} + gh_app_secret_key: ${{ vars.PROJECT_ID }} + project_id: ${{ vars.PROJECT_ID }} user: leonsteinhaeuser - project_id: ${{ secrets.PROJECT_ID }} resource_node_id: ${{ github.event.issue.node_id }} status_value: "Todo" @@ -34,8 +36,10 @@ jobs: - name: 'Move PR to "In Progress"' uses: leonsteinhaeuser/project-beta-automations@v2.1.0 with: - gh_token: ${{ secrets.PROJECT_PERMISSIONS_TOKEN }} + gh_app_ID: ${{ vars.GH_APP_ID }} + gh_app_installation_ID: ${{ vars.GH_APP_INSTALLATION_ID }} + gh_app_secret_key: ${{ vars.PROJECT_ID }} + project_id: ${{ vars.PROJECT_ID }} user: leonsteinhaeuser - project_id: ${{ secrets.PROJECT_ID }} resource_node_id: ${{ github.event.pull_request.node_id }} status_value: "In Progress"