fix: run tests on release-* branches too (#289)

This commit is contained in:
Yury Semikhatsky 2021-02-19 09:35:30 -08:00 committed by GitHub
parent 8e62a47f6d
commit 8bfb69b93d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -1,9 +1,13 @@
name: Test
on:
push:
branches: [ master ]
branches:
- master
- release-*
pull_request:
branches: [ master ]
branches:
- master
- release-*
jobs:
build:
timeout-minutes: 30

View File

@ -1,12 +1,16 @@
name: Verify API
on:
push:
branches: [ master ]
branches:
- master
- release-*
paths:
- 'scripts/*'
- 'api-generator/*'
pull_request:
branches: [ master ]
branches:
- master
- release-*
paths:
- 'scripts/**'
- 'api-generator/**'