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 9249490 commit 9c9d061Copy full SHA for 9c9d061
.github/workflows/sheldon.yaml
@@ -30,6 +30,16 @@ jobs:
30
with:
31
path: pull-request
32
ref: ${{ github.event.pull_request.head.sha }}
33
+ - run: cd pull-request && git status
34
+
35
+ - name: Checkout pull-request from submitter repo
36
+ uses: actions/checkout@v2
37
+ if: "! contains(github.event.pull_request.labels.*.name, 'safe to test')"
38
+ with:
39
+ repository: ${{ github.event.pull_request.head.repo.full_name }}
40
+ path: pull-request-2
41
+ ref: ${{ github.event.pull_request.head.ref }}
42
+ - run: cd pull-request-2 && git status
43
44
- name: Check for relevant changes
45
uses: dorny/paths-filter@v2
0 commit comments