From ab66e3220a1b4cfb8d1bd0e7fd823b6957a5da4b Mon Sep 17 00:00:00 2001 From: Brandon Dech <135037265+bdech@users.noreply.github.com> Date: Mon, 30 Dec 2024 14:18:52 -0500 Subject: [PATCH] Update assign-to-support-project.yml (#99736) fix release version v2 --- .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 89a36ea7a11..9401c72ea0b 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@1.0.2 + uses: actions/add-to-project@main 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@1.0.2 + uses: actions/add-to-project@main 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@1.0.2 + uses: actions/add-to-project@main 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@1.0.2 + uses: actions/add-to-project@main if: | github.event.action == 'opened' && contains(github.event.issue.labels.*.name, 'Offboarding')