Skip to content

Commit 2484156

Browse files
authored
tools: use github.actor instead of bot username for release proposals
PR-URL: #56232 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
1 parent b87ecc7 commit 2484156

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/create-release-proposal.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# This action requires the following secrets to be set on the repository:
2-
# GH_USER_NAME: GitHub user whose Jenkins and GitHub token are defined below
32
# GH_USER_TOKEN: GitHub user token, to be used by ncu and to push changes
43

54
name: Create Release Proposal
@@ -52,20 +51,18 @@ jobs:
5251
run: |
5352
ncu-config set branch "${RELEASE_BRANCH}"
5453
ncu-config set upstream origin
55-
ncu-config set username "$USERNAME"
54+
ncu-config set username "$GITHUB_ACTOR"
5655
ncu-config set token "$GH_TOKEN"
5756
ncu-config set repo "$(echo "$GITHUB_REPOSITORY" | cut -d/ -f2)"
5857
ncu-config set owner "${GITHUB_REPOSITORY_OWNER}"
5958
env:
60-
USERNAME: ${{ secrets.JENKINS_USER }}
6159
GH_TOKEN: ${{ github.token }}
6260

6361
- name: Set up ghauth config (Ubuntu)
6462
run: |
6563
mkdir -p "${XDG_CONFIG_HOME:-~/.config}/changelog-maker"
66-
echo '{}' | jq '{user: env.USERNAME, token: env.TOKEN}' > "${XDG_CONFIG_HOME:-~/.config}/changelog-maker/config.json"
64+
echo '{}' | jq '{user: env.GITHUB_ACTOR, token: env.TOKEN}' > "${XDG_CONFIG_HOME:-~/.config}/changelog-maker/config.json"
6765
env:
68-
USERNAME: ${{ secrets.JENKINS_USER }}
6966
TOKEN: ${{ github.token }}
7067

7168
- name: Setup git author

0 commit comments

Comments
 (0)