Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 002ee71

Browse filesBrowse files
committed
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 71c38a2 commit 002ee71
Copy full SHA for 002ee71

File tree

Expand file treeCollapse file tree

1 file changed

+2
-5
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-5
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: .github/workflows/create-release-proposal.yml
+2-5Lines changed: 2 additions & 5 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.