Skip to content

Commit

Permalink
Fix workflow branches names
Browse files Browse the repository at this point in the history
  • Loading branch information
micryc committed Mar 18, 2024
1 parent 20536fd commit d5e76df
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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", "v2", "v31"]
branches: ["master"]
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", "v2", "v31"]
branches: ["master"]
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", "v2", "v31"]
branches: ["master"]

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", "v2", "v31"]
branches: ["master"]

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", "v2", "v31"]
branches: ["master"]

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", "v2", "v31"]
branches: ["master"]

jobs:
build:
Expand Down

0 comments on commit d5e76df

Please sign in to comment.