File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 8
8
env :
9
9
AZURE_STORAGE_SAS_TOKEN : ${{ secrets.AZURE_STORAGE_SAS_TOKEN }}
10
10
runs-on : ubuntu-latest
11
- if : " github.event_name == 'pull_request' || contains(github.event.ref, 'scala3doc') || contains(github.event.ref, 'master')"
11
+ if : " ( github.event_name == 'pull_request'
12
+ && !contains(github.event.pull_request.body, '[skip ci]')
13
+ && !contains(github.event.pull_request.body, '[skip docs]')
14
+ )
15
+ || contains(github.event.ref, 'scala3doc')
16
+ || contains(github.event.ref, 'master')"
12
17
13
18
steps :
14
19
- name : Git Checkout
67
72
env :
68
73
AZURE_STORAGE_SAS_TOKEN : ${{ secrets.AZURE_STORAGE_SAS_TOKEN }}
69
74
runs-on : ubuntu-latest
70
- if : " github.event_name == 'pull_request' || contains(github.event.ref, 'scala3doc') || contains(github.event.ref, 'master')"
75
+ if : " ( github.event_name == 'pull_request'
76
+ && !contains(github.event.pull_request.body, '[skip ci]')
77
+ && !contains(github.event.pull_request.body, '[skip docs]')
78
+ )
79
+ || contains(github.event.ref, 'scala3doc')
80
+ || contains(github.event.ref, 'master')"
71
81
72
82
steps :
73
83
- name : Git Checkout
You can’t perform that action at this time.
0 commit comments