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.
2 parents 6361ade + 21141bb commit f2fb32bCopy full SHA for f2fb32b
.github/workflows/Breakage.yml
@@ -1,12 +1,15 @@
1
name: Breakage
2
# Based on: https://github.com/JuliaSmoothOptimizers/LinearOperators.jl/blob/main/.github/workflows/Breakage.yml
3
on:
4
- pull_request:
5
- branches:
6
- - main
+ pull_request:
+ branches:
+ - main
7
+ types: [opened, reopened, labeled, synchronize]
8
+
9
10
jobs:
11
break:
12
+ if: ${{ contains(github.event.pull_request.labels.*.name, 'breakage') }}
13
runs-on: ubuntu-latest
14
strategy:
15
fail-fast: false
@@ -71,4 +74,4 @@ jobs:
71
74
global TAG = chomp(read(`git rev-parse --short HEAD`, String))
72
75
end
73
76
pkg"build";
- pkg"test";'
77
+ pkg"test";'
0 commit comments