Skip to content

Commit 91ab341

Browse files
authored
Merge pull request #108 from Nautilus-Cyberneering/issue-68-do-not-overwrite-git-committer-config
Do not change Git user custom config
2 parents 05f1c3d + 30a1f2c commit 91ab341

File tree

8 files changed

+657
-762
lines changed

8 files changed

+657
-762
lines changed

.github/workflows/test-workflow-integration-using-pip.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: pip3 install wheel
2929

3030
- name: Setup Nautilus Librarian
31-
run: pip3 install wheel nautilus-librarian
31+
run: pip3 install nautilus-librarian
3232

3333
- name: Invoke Librarian
3434
run: nautilus-librarian --help

.github/workflows/test.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,10 @@ jobs:
2020
with:
2121
gpg_private_key: ${{ secrets.TEST_GPG_PRIVATE_KEY }}
2222
passphrase: ${{ secrets.TEST_PASSPHRASE }}
23+
git_config_global: true
2324
git_user_signingkey: true
2425
git_commit_gpgsign: true
2526

26-
- name: Set GPG key user as the Git global user
27-
run: |
28-
git config --global user.email "${{ steps.import-gpg.outputs.email }}"
29-
git config --global user.name "${{ steps.import-gpg.outputs.name }}"
30-
git config --global user.signingkey "${{ steps.import-gpg.outputs.keyid }}"
31-
3227
- name: Setup Python
3328
uses: actions/setup-python@v2.3.1
3429
with:

0 commit comments

Comments
 (0)