From fb7df5533f4381ac4d15b8901f3ebf800c35f707 Mon Sep 17 00:00:00 2001 From: Jonathan Aanesen Date: Fri, 26 Jan 2024 13:24:23 +0100 Subject: [PATCH] fix: removed secrets and changed to vars for transparency --- .github/workflows/npm-md-css.yml | 4 ++-- .github/workflows/npm-md-react.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm-md-css.yml b/.github/workflows/npm-md-css.yml index d1b385d6..2e5251d1 100644 --- a/.github/workflows/npm-md-css.yml +++ b/.github/workflows/npm-md-css.yml @@ -28,8 +28,8 @@ jobs: - name: Git config run: | - git config --global user.email "${{secrets.GH_EMAIL}}" - git config --global user.name "${{secrets.GH_NAME}}" + git config --global user.email "${{vars.GH_EMAIL}}" + git config --global user.name "${{vars.GH_NAME}}" - name: Apply version bump (major) if: contains(github.event.pull_request.labels.*.name, 'major') diff --git a/.github/workflows/npm-md-react.yml b/.github/workflows/npm-md-react.yml index 14f8b5c4..2273004d 100644 --- a/.github/workflows/npm-md-react.yml +++ b/.github/workflows/npm-md-react.yml @@ -27,8 +27,8 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Git config run: | - git config --global user.email "${{secrets.GH_EMAIL}}" - git config --global user.name "${{secrets.GH_NAME}}" + git config --global user.email "${{vars.GH_EMAIL}}" + git config --global user.name "${{vars.GH_NAME}}" - name: Apply version bump (major) if: contains(github.event.pull_request.labels.*.name, 'major')