Skip to content

Commit 38b5ff3

Browse files
committed
fixup!
1 parent 88046f5 commit 38b5ff3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/request-review.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,14 @@ jobs:
3838
with:
3939
egress-policy: audit
4040

41-
- name: Git Checkout (BASE)
41+
- name: Checkout Repo
4242
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4343
with:
4444
fetch-depth: 0
4545

4646
- name: Get changed files
4747
id: changed-files
4848
run: |
49-
git diff --name-only $BASE $HEAD
5049
FILES=$(git diff --name-only $BASE $HEAD | grep -E '^apps/site/pages/en/.*\.(md|mdx)$' || true)
5150
echo "files<<EOF" >> $GITHUB_OUTPUT
5251
echo $FILES >> $GITHUB_OUTPUT
@@ -63,7 +62,7 @@ jobs:
6362
const { default: reviewers } = await import("${{github.workspace}}/.github/scripts/get-reviewers.mjs");
6463
reviewers(core, process.env.PR_FILES);
6564
env:
66-
PR_FILES: ${{ steps.pr.outputs.files }}
65+
PR_FILES: ${{ steps.pr.output.files }}
6766

6867
- uses: thollander/actions-comment-pull-request@e2c37e53a7d2227b61585343765f73a9ca57eda9 # v3.0.0
6968
if: steps.reviewers.outputs.found == 'true'

0 commit comments

Comments
 (0)