Skip to content

Commit

Permalink
Enable CI for 0.41 branch (#1651)
Browse files Browse the repository at this point in the history
Motivation:

`0.41` branch will be used for a while until we stabilize API. We plan
to backport all bug fixes and improvements that do not impact API into
that branch. We need to enable CI in order to provide snapshots of
`0.41.X` versions and validate any PRs that we will need to open for
that branch.

Modifications:
- Add `0.41` to the list of branches for all CI configurations;

Result:

CI will publish snapshots for `0.41` branch and validate all PRs.
  • Loading branch information
idelpivnitskiy authored Jul 1, 2021
1 parent 8706542 commit 6e39ecb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-prb.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: PR Builder
on:
pull_request:
branches: [ main ]
branches: [ main, '0.41' ]
jobs:
build:
name: Build JDK ${{ matrix.java }} ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-prq.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: PR Quality
on:
pull_request:
branches: [ main ]
branches: [ main, '0.41' ]
jobs:
quality:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-snapshot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Snapshot Publisher
on:
push:
branches: [ main ]
branches: [ main, '0.41' ]
tags-ignore:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: CodeQL
on:
push:
branches: [ main ]
branches: [ main, '0.41' ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
branches: [ main, '0.41' ]
schedule:
- cron: '0 13 * * 1'

Expand Down

0 comments on commit 6e39ecb

Please sign in to comment.