Skip to content

Commit

Permalink
Trigger workflows on beta branches (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym-stripe authored Jun 15, 2022
1 parent 6b1efe6 commit 2ae4840
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ name: CI
on:
workflow_dispatch: {}
push:
branches: [master]
branches:
- master
- beta
tags:
- v[0-9]+.[0-9]+.[0-9]+*
pull_request:
branches: [master]
branches:
- master
- beta

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ clean:

update-version:
@echo "$(VERSION)" > VERSION
@perl -pi -e 's|VERSION = "[.\d]+"|VERSION = "$(VERSION)"|' stripe/version.py
@perl -pi -e 's|VERSION = "[.\d\w]+"|VERSION = "$(VERSION)"|' stripe/version.py

codegen-format: fmt

Expand Down

0 comments on commit 2ae4840

Please sign in to comment.