Skip to content

Commit

Permalink
fixed incorrect branches in workflows (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
untari authored Jun 17, 2024
1 parent 6c79261 commit 3e6a491
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker-server-deploy
on:
workflow_dispatch:
push:
branches: [ development, master ]
branches: [ development, main ]

jobs:
push_to_registry:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_webapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker-webapp-deploy
on:
workflow_dispatch:
push:
branches: [ development, master ]
branches: [ development, main ]

jobs:
push_to_registry:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/server_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Server style
on:
workflow_dispatch:
push:
branches: [ development, master ]
branches: [ development, main ]
paths:
- 'server/**'
pull_request:
branches: [ development, master ]
branches: [ development, main ]
paths:
- 'server/**'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/server_tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Server tests
on:
push:
branches: [ development, master ]
branches: [ development, main ]
paths:
- 'server/**'
pull_request:
branches: [ development, master ]
branches: [ development, main ]
paths:
- 'server/**'
workflow_dispatch: {}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/webapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: webapp

on:
push:
branches: [ dev, stable, prod ]
branches: [ development, main ]
paths:
- 'webapp/**'
pull_request:
branches: [ dev, stable, prod ]
branches: [ development, main ]
paths:
- 'webapp/**'

Expand Down

0 comments on commit 3e6a491

Please sign in to comment.