Skip to content

Commit

Permalink
fix: configure user/email prior to release-notes-processing
Browse files Browse the repository at this point in the history
  • Loading branch information
ccwienk committed Jan 16, 2025
1 parent 8130b75 commit 256310f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/actions/draft-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ runs:
steps:
- name: install-gardener-gha-libs
uses: gardener/cc-utils/.github/actions/install-gardener-gha-libs@master
- name: install-git
run: |
set -eu
if which git &>/dev/null; then exit 0; fi
apt-get install -y git
shell: sh
- name: Update draft-release
shell: sh
run: |
Expand All @@ -33,6 +39,9 @@ runs:
echo 'Component-Descriptor:'
cat component-descriptor.yaml
git config --global user.name 'Gardener GitHubActions-Bot'
git config --global user.email '[email protected]'
auth_token="${{ inputs.github-token }}"
if [ -z "${auth_token:-}" ]; then
Expand Down

0 comments on commit 256310f

Please sign in to comment.