Skip to content

Commit 95fcf98

Browse files
authored
Merge pull request #1238 from nupplaphil/fix/git_config
Fix woodpecker GIT email/name
2 parents 7be6eb5 + 25e95fa commit 95fcf98

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.woodpecker/.code_standards_check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ pipeline:
1111
clone_friendica_addon:
1212
image: alpine/git
1313
commands:
14+
- git config --global user.email "[email protected]"
15+
- git config --global user.name "Friendica"
1416
- git clone $CI_REPO_LINK addon
1517
- cd addon/
1618
- git checkout $CI_COMMIT_BRANCH

.woodpecker/.continuous-deployment.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ pipeline:
2020
clone_friendica_addon:
2121
image: alpine/git
2222
commands:
23+
- git config --global user.email "[email protected]"
24+
- git config --global user.name "Friendica"
2325
- git clone $CI_REPO_LINK addon
2426
- cd addon/
2527
- git checkout $CI_COMMIT_BRANCH

.woodpecker/.messages.po_check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ pipeline:
1111
clone_friendica_addon:
1212
image: alpine/git
1313
commands:
14+
- git config --global user.email "[email protected]"
15+
- git config --global user.name "Friendica"
1416
- git clone $CI_REPO_LINK addon
1517
- cd addon/
1618
- git checkout $CI_COMMIT_BRANCH

.woodpecker/.releaser.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ pipeline:
2020
clone_friendica_addon:
2121
image: alpine/git
2222
commands:
23+
- git config --global user.email "[email protected]"
24+
- git config --global user.name "Friendica"
2325
- git clone $CI_REPO_LINK addon
2426
- cd addon/
2527
- git checkout $CI_COMMIT_BRANCH

0 commit comments

Comments
 (0)