Skip to content

Commit f5aeac4

Browse files
authored
ci: fix release-please exclusions (#235)
This wasn't working and was missing in the new workflows
1 parent 943064d commit f5aeac4

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/format.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
branches: [main]
55
pull_request:
66
types: [opened, synchronize, reopened]
7+
branches:
8+
- '**'
9+
- '!release-please--**'
710
merge_group:
811
jobs:
912
format:

.github/workflows/publint.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ on:
44
branches: [main]
55
pull_request:
66
types: [opened, synchronize, reopened]
7+
branches:
8+
- '**'
9+
- '!release-please--**'
710
merge_group:
811
jobs:
912
publint:
10-
if: "${{ !startsWith(github.head_ref, 'release-') }}"
1113
runs-on: ubuntu-latest
1214
timeout-minutes: 30
1315
steps:

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ on:
55
branches: [main]
66
pull_request:
77
types: [opened, synchronize, reopened]
8+
branches:
9+
- '**'
10+
- '!release-please--**'
811
merge_group:
912
jobs:
1013
test:
11-
if: "${{ !startsWith(github.head_ref, 'release-') }}"
1214
runs-on: ${{ matrix.os }}
1315
timeout-minutes: 30
1416
strategy:

0 commit comments

Comments
 (0)