Skip to content

Commit

Permalink
Update notify_teams.yml
Browse files Browse the repository at this point in the history
added missing checkout
  • Loading branch information
crecine authored Mar 15, 2024
1 parent d5b1e9f commit 07b825d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/notify_teams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 07b825d

Please sign in to comment.