Commit 5a4966e
authored
[chore] Fix check-merge-freeze check (#13934)
To unblock
#13933
The logic seems incorrect. The check should run when
```
(!startsWith(title, '[chore] Prepare release')) || (user != 'otelbot[bot]')
or
!(startsWith(title, '[chore] Prepare release')) && (user == 'otelbot[bot]'))
```
instead of
```
(!startsWith(title, '[chore] Prepare release')) || (user == 'otelbot[bot]')
```1 parent d00f059 commit 5a4966e
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
0 commit comments