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 bbd54a6 commit 6465284Copy full SHA for 6465284
1 file changed
.github/workflows/test-sdc-tasks.yml
@@ -19,11 +19,17 @@ jobs:
19
pull-requests: write
20
21
steps:
22
- - name: checkout pushed PR
+ - name: checkout base branch
23
uses: actions/checkout@v5
24
- name: Get changed files
25
id: changed-files
26
uses: tj-actions/changed-files@v47.0.5
27
+ - name: checkout changed files
28
+ env:
29
+ GH_TOKEN: ${{ github.token }}
30
+ PR_NUM: ${{ github.event.pr.number }}
31
+ run: |
32
+ gh pr checkout $PR_NUM
33
- name: test individual shell tools
34
id: test-individual-shell-tools
35
if: contains(steps.changed-files.outputs.modified_files, 'individual-shell-tools/')
0 commit comments