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
This commit is contained in:
Arran Schlosberg 2024-10-29 07:29:27 +00:00 committed by GitHub
parent 12b8aa5c2e
commit dc8fc0308d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -2,9 +2,9 @@ name: Go
on:
push:
branches: [ main ]
branches: [ main, 'release/**' ]
pull_request:
branches: [ main ]
branches: [ main, 'release/**' ]
workflow_dispatch:
jobs:

View file

@ -2,9 +2,9 @@ name: golangci-lint
on:
push:
branches: [ main ]
branches: [ main, 'release/**' ]
pull_request:
branches: [ main ]
branches: [ main, 'release/**' ]
workflow_dispatch:
permissions:

View file

@ -2,9 +2,9 @@ name: libevm delta
on:
push:
branches: [ main ]
branches: [ main, 'release/**' ]
pull_request:
branches: [ main ]
branches: [ main, 'release/**' ]
workflow_dispatch:
jobs: