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 274babf commit da01fd7Copy full SHA for da01fd7
.github/workflows/scaladoc.yaml
@@ -4,9 +4,11 @@ on:
4
push:
5
branches-ignore:
6
- 'language-reference-stable'
7
+ - 'gh-readonly-queue/**'
8
pull_request:
9
10
11
+ merge_group:
12
permissions:
13
contents: read
14
@@ -15,7 +17,8 @@ jobs:
15
17
env:
16
18
AZURE_STORAGE_SAS_TOKEN: ${{ secrets.AZURE_STORAGE_SAS_TOKEN }}
19
runs-on: ubuntu-latest
- if: "( github.event_name == 'pull_request'
20
+ if: "github.event_name == 'merge_group'
21
+ || ( github.event_name == 'pull_request'
22
&& !contains(github.event.pull_request.body, '[skip ci]')
23
&& !contains(github.event.pull_request.body, '[skip docs]')
24
)
0 commit comments