From 7fa878a29c8bd0a7bd94a4cbf9b90aa69452ed64 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Thu, 2 May 2024 11:22:02 +0200 Subject: [PATCH] upgraded github-issue-sync to latest --- .github/workflows/github-issue-sync.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-issue-sync.yml b/.github/workflows/github-issue-sync.yml index a13d036..cda1469 100644 --- a/.github/workflows/github-issue-sync.yml +++ b/.github/workflows/github-issue-sync.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: inputs: excludeClosed: - description: 'Exclude closed issues in the sync.' + description: "Exclude closed issues in the sync." type: boolean default: true @@ -18,12 +18,12 @@ jobs: steps: - name: Generate token id: generate_token - uses: tibdex/github-app-token@v1 + uses: actions/create-github-app-token@v1 with: - app_id: ${{ secrets.PROJECT_APP_ID }} - private_key: ${{ secrets.PROJECT_APP_KEY }} + app-id: ${{ secrets.PROJECT_APP_ID }} + private-key: ${{ secrets.PROJECT_APP_KEY }} - name: Sync issues - uses: paritytech/github-issue-sync@v0.3 + uses: paritytech/github-issue-sync@v0.3.2 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PROJECT_TOKEN: ${{ steps.generate_token.outputs.token }}