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

Add v2 and v31 trigger option to workflows #127

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: "Code scanning - action"

on:
push:
branches: ["master"]
branches: ["master", "v2", "v31"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["master"]
branches: ["master", "v2", "v31"]
schedule:
- cron: '0 19 * * 1'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-pulls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Test PR

on:
pull_request:
branches: [ "master" ]
branches: ["master", "v2", "v31"]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Test master

on:
push:
branches: [ "master" ]
branches: ["master", "v2", "v31"]

jobs:
build:
Expand Down
Loading