We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b56eeaa commit 0321e8cCopy full SHA for 0321e8c
.github/workflows/scaladoc.yaml
@@ -75,13 +75,14 @@ jobs:
75
76
stdlib-sourcelinks-test:
77
runs-on: ubuntu-latest
78
- if: "( github.event_name == 'pull_request'
+ # if false - disable flaky test
79
+ if: "false && (( github.event_name == 'pull_request'
80
&& !contains(github.event.pull_request.body, '[skip ci]')
81
&& !contains(github.event.pull_request.body, '[skip docs]')
82
)
83
|| contains(github.event.ref, 'scaladoc')
84
|| contains(github.event.ref, 'scala3doc')
- || contains(github.event.ref, 'master')"
85
+ || contains(github.event.ref, 'master'))"
86
87
steps:
88
- name: Git Checkout
0 commit comments