From 70eba017a9289023d12c7ec321b1f674c77f545f Mon Sep 17 00:00:00 2001 From: Brandon Dech <135037265+bdech@users.noreply.github.com> Date: Mon, 30 Dec 2024 13:53:43 -0500 Subject: [PATCH] Update assign-to-support-project.yml fix GHA version --- .github/workflows/assign-to-support-project.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/assign-to-support-project.yml b/.github/workflows/assign-to-support-project.yml index 4f3c541b553..89a36ea7a11 100644 --- a/.github/workflows/assign-to-support-project.yml +++ b/.github/workflows/assign-to-support-project.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Add issue to Support Tickets column - uses: actions/add-to-project@v2 + uses: actions/add-to-project@1.0.2 if: | github.event.action == 'opened' && contains(github.event.issue.labels.*.name, 'Platform-Support-Ticket') @@ -21,7 +21,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Add issue to Platform Onboarding column - uses: actions/add-to-project@v2 + uses: actions/add-to-project@1.0.2 if: | github.event.action == 'opened' && (contains(github.event.issue.labels.*.name, 'new-vfs-team') || @@ -33,7 +33,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Add issue to Access Requests column - uses: actions/add-to-project@v2 + uses: actions/add-to-project@1.0.2 if: | github.event.action == 'opened' && contains(github.event.issue.labels.*.name, 'T1-access-request') @@ -44,7 +44,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Add issue to Offboarding column - uses: actions/add-to-project@v2 + uses: actions/add-to-project@1.0.2 if: | github.event.action == 'opened' && contains(github.event.issue.labels.*.name, 'Offboarding')