Skip to content

Commit

Permalink
Add v2 and v31 trigger option to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
micryc committed Mar 13, 2024
1 parent 7767363 commit 20536fd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ 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"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy Docker

on:
workflow_dispatch:
branches: ["master"]
branches: ["master", "v2", "v31"]
inputs:
tag:
description: tag/version to deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker Release

on:
workflow_dispatch:
branches: ["master"]
branches: ["master", "v2", "v31"]
inputs:
tag:
description: tag/version to release
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
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Prepare Release

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

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

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

jobs:
build:
Expand Down

0 comments on commit 20536fd

Please sign in to comment.