Skip to content

Commit e0449f0

Browse files
authored
Merge pull request #93 from miljodir/change-secrets-to-vars
fix: removed secrets and changed to vars for transparency
2 parents dac38e4 + fb7df55 commit e0449f0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/npm-md-css.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828

2929
- name: Git config
3030
run: |
31-
git config --global user.email "${{secrets.GH_EMAIL}}"
32-
git config --global user.name "${{secrets.GH_NAME}}"
31+
git config --global user.email "${{vars.GH_EMAIL}}"
32+
git config --global user.name "${{vars.GH_NAME}}"
3333
3434
- name: Apply version bump (major)
3535
if: contains(github.event.pull_request.labels.*.name, 'major')

.github/workflows/npm-md-react.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
registry-url: https://registry.npmjs.org/
2828
- name: Git config
2929
run: |
30-
git config --global user.email "${{secrets.GH_EMAIL}}"
31-
git config --global user.name "${{secrets.GH_NAME}}"
30+
git config --global user.email "${{vars.GH_EMAIL}}"
31+
git config --global user.name "${{vars.GH_NAME}}"
3232
3333
- name: Apply version bump (major)
3434
if: contains(github.event.pull_request.labels.*.name, 'major')

0 commit comments

Comments
 (0)