We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a60dfa + 9624eff commit 2be002bCopy full SHA for 2be002b
.github/workflows/swagger_docs.yml
@@ -44,9 +44,13 @@ jobs:
44
45
- name: Merge the changes from main branch to docs branch
46
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
51
git checkout -b docs || git checkout docs
- git pull origin docs
- git merge 'origin/${{ github.ref_name }}'
52
+ git pull -S origin docs
53
+ git merge -S 'origin/${{ github.ref_name }}'
54
55
- name: Generate swagger.yaml and exit if no changes
56
.github/workflows/test_and_lint.yml
@@ -4,7 +4,6 @@ on:
4
push:
5
branches:
6
- main
7
- - v2-dev
8
pull_request:
9
10
jobs:
0 commit comments