File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -15,19 +15,23 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- if : >-
18
- github.event_name != 'pull_request' ||
19
- github.event.pull_request.head.repo.full_name == github.repository
18
+ github.actor != 'dependabot[bot]' && (
19
+ github.event_name != 'pull_request' ||
20
+ github.event.pull_request.head.repo.full_name == github.repository
21
+ )
20
22
name: Check out repo
21
23
uses: actions/checkout@v4
22
24
with:
23
25
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
24
26
25
27
- if : >-
26
- github.event_name == 'pull_request' &&
27
- github.event.pull_request.head.repo.full_name != github.repository
28
+ github.actor == 'dependabot[bot]' || (
29
+ github.event_name == 'pull_request' &&
30
+ github.event.pull_request.head.repo.full_name != github.repository
31
+ )
28
32
name: Check out repo
29
33
uses: actions/checkout@v4
30
- # We don't share secrets with forks.
34
+ # We don't share secrets with Dependabot nor forks.
31
35
32
36
- name : Set up Node.js
33
37
uses : actions/setup-node@v4
You can’t perform that action at this time.
0 commit comments