Skip to content

Commit dc8fc03

Browse files
authored
chore: run workflows on PRs+push to release branches (#67)
## Why this should be merged These workflows are required by branch protection for release branches, but aren't run automatically so release PRs can't currently be merged. ## How this works Extends the `branches` filters of necessary workflows. ## How this was tested n/a
1 parent 12b8aa5 commit dc8fc03

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Go
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, 'release/**' ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, 'release/**' ]
88
workflow_dispatch:
99

1010
jobs:

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: golangci-lint
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, 'release/**' ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, 'release/**' ]
88
workflow_dispatch:
99

1010
permissions:

.github/workflows/libevm-delta.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: libevm delta
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, 'release/**' ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, 'release/**' ]
88
workflow_dispatch:
99

1010
jobs:

0 commit comments

Comments
 (0)