From 07b825dd2ae5c2be850c336f357f84c1f262b71c Mon Sep 17 00:00:00 2001 From: crecine <51181861+crecine@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:52:30 -0700 Subject: [PATCH] Update notify_teams.yml added missing checkout --- .github/workflows/notify_teams.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/notify_teams.yml b/.github/workflows/notify_teams.yml index 6161299a1..ef2b01549 100644 --- a/.github/workflows/notify_teams.yml +++ b/.github/workflows/notify_teams.yml @@ -51,6 +51,13 @@ jobs: if: github.event.action == 'assigned' runs-on: ubuntu-latest steps: + - name: Checkout actions + uses: actions/checkout@v3 + with: + sparse-checkout: | + .github/actions + path: actions + - name: Get Updated Assignees run: | echo "number=${{ github.event.pull_request.number }}" >> $GITHUB_ENV @@ -75,6 +82,13 @@ jobs: if: github.event.action == 'review_requested' runs-on: ubuntu-latest steps: + - name: Checkout actions + uses: actions/checkout@v3 + with: + sparse-checkout: | + .github/actions + path: actions + - name: Get Reviewers run: | echo "number=${{ github.event.pull_request.number }}" >> $GITHUB_ENV @@ -99,6 +113,13 @@ jobs: if: github.event.action == 'closed' || github.event.action == 'converted_to_draft' runs-on: ubuntu-latest steps: + - name: Checkout actions + uses: actions/checkout@v3 + with: + sparse-checkout: | + .github/actions + path: actions + - name: Get PR Data run: | echo "number=${{ github.event.pull_request.number }}" >> $GITHUB_ENV