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 8631782 commit e094614Copy full SHA for e094614
.github/workflows/scala3doc.yaml
@@ -8,7 +8,12 @@ jobs:
8
env:
9
AZURE_STORAGE_SAS_TOKEN: ${{ secrets.AZURE_STORAGE_SAS_TOKEN }}
10
runs-on: ubuntu-latest
11
- if: "github.event_name == 'pull_request' || contains(github.event.ref, 'scala3doc') || contains(github.event.ref, 'master')"
+ 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')"
17
18
steps:
19
- name: Git Checkout
0 commit comments