We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b433fa6 commit 71eaa0dCopy full SHA for 71eaa0d
.github/workflows/comment_commands.yml
@@ -36,13 +36,16 @@ jobs:
36
})
37
core.setOutput('sha', pr.data.head.sha)
38
core.setOutput('branch', pr.data.head.ref)
39
+ core.setOutput('repository', pr.data.head.repo.full_name)
40
41
- name: Checkout code on the correct branch
42
uses: actions/checkout@v4
43
with:
44
# context is not aware which branch to checkout so it would otherwise
- # default to main
45
+ # default to main (we also need repo name to source from the right user
46
+ # otherwise it will look for the branch in pandas-stubs repo)
47
ref: ${{ steps.get-branch-info.outputs.branch }}
48
+ repository: ${{ steps.get-branch-info.outputs.repository }}
49
50
- name: Install project dependencies
51
uses: ./.github/setup
0 commit comments