Skip to content

Commit

Permalink
Adding dev branches to workflows (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
saynb committed Aug 4, 2023
1 parent d76a364 commit 0e2fb58
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci-build-proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: "build protobufs"

on:
push:
branches: [ main ]
branches:
- main
- '*-dev'
pull_request:
branches: [ main ]
branches:
- main
- '*-dev'
schedule:
- cron: "0 0 * * *"

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- main
- "*-dev"
pull_request:
branches:
- main
- "*-dev"

jobs:
check-codegen:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- main
- '*-dev'
pull_request:
branches:
- main
- '*-dev'

jobs:
madoko-lint:
Expand Down

0 comments on commit 0e2fb58

Please sign in to comment.