Skip to content

Commit 2be002b

Browse files
authored
Merge pull request #154 from kossiitkgp/fix-workflow
[v2] Fix workflow
2 parents 0a60dfa + 9624eff commit 2be002b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/swagger_docs.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,13 @@ jobs:
4444

4545
- name: Merge the changes from main branch to docs branch
4646
run: |
47+
git config user.email "[email protected]"
48+
git config user.name "koss-service"
49+
git config gpg.format ssh
50+
git config user.signingkey ~/.ssh/koss-service.pub
4751
git checkout -b docs || git checkout docs
48-
git pull origin docs
49-
git merge 'origin/${{ github.ref_name }}'
52+
git pull -S origin docs
53+
git merge -S 'origin/${{ github.ref_name }}'
5054
5155
- name: Generate swagger.yaml and exit if no changes
5256
run: |

.github/workflows/test_and_lint.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- v2-dev
87
pull_request:
98

109
jobs:

0 commit comments

Comments
 (0)