Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run the CI on PRs that target the default branch #9

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: CI

on:
# Triggers the workflow on push or pull request events but only for the master branch
# Triggers the workflow on push or pull request events but only for the default branch
push:
branches: [ b2.5, b3.0, master]
branches: [scylla-4.x]
pull_request:
branches: [ b2.5, b3.0, master]
branches: [scylla-4.x]

workflow_dispatch:

Expand Down Expand Up @@ -33,6 +33,7 @@ jobs:
java-version: | # order is important, the last one is the default which will be used by SBT
11
8
cache: sbt

- name: sbt tests
env:
Expand Down
Loading