Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow editing the Git user name and email #61

Merged
merged 2 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ The Action will extract all needed informations by itself, you just need to spec
with:
# Required, custom GitHub access token with the 'public_repo' and 'workflow' scopes
token: ${{secrets.TOKEN}}
# Optional, will commit with this user name
user_name: name
# Optional, will commit with this user email
user_email: [email protected]
# Optional, will create tap repo fork in organization
org: ORG
# Optional, use the origin repository instead of forking
Expand Down Expand Up @@ -61,6 +65,10 @@ If there are no outdated formulae, the Action will just exit.
with:
# Required, custom personal GitHub access token with only the 'public_repo' scope enabled
token: ${{secrets.CUSTOM_PERSONAL_ACCESS_TOKEN}}
# Optional, will commit with this user name
user_name: user_name
# Optional, will commit with this user email
user_email: [email protected]
# Optional, will create tap repo fork in organization
org: ORG
# Bump all outdated formulae in this tap
Expand Down
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ inputs:
token:
description: GitHub token (not the default one)
required: true
user_name:
description: Git user name to commit by.
required: false
user_email:
description: Git user email to commit by.
required: false
message:
description: |
Additional message to append to created PR.
Expand Down Expand Up @@ -83,6 +89,8 @@ runs:
shell: sh
env:
HOMEBREW_GITHUB_API_TOKEN: ${{inputs.token}}
HOMEBREW_GIT_NAME: ${{inputs.user_name}}
HOMEBREW_GIT_EMAIL: ${{inputs.user_email}}
HOMEBREW_BUMP_MESSAGE: ${{inputs.message}}
HOMEBREW_BUMP_ORG: ${{inputs.org}}
HOMEBREW_BUMP_NO_FORK: ${{inputs.no_fork}}
Expand Down
6 changes: 4 additions & 2 deletions main.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ def read_brew(*args)

# Get inputs
message = ENV['HOMEBREW_BUMP_MESSAGE']
user_name = ENV['HOMEBREW_GIT_NAME']
user_email = ENV['HOMEBREW_GIT_EMAIL']
org = ENV['HOMEBREW_BUMP_ORG']
no_fork = ENV['HOMEBREW_BUMP_NO_FORK']
tap = ENV['HOMEBREW_BUMP_TAP']
Expand All @@ -59,7 +61,7 @@ def read_brew(*args)
user = GitHub::API.open_rest "#{GitHub::API_URL}/user"
user_id = user['id']
user_login = user['login']
user_name = user['name'] || user['login']
user_name = user['name'] || user['login'] if user_name.blank?
user_email = user['email'] || (
# https://help.github.com/en/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address
user_created_at = Date.parse user['created_at']
Expand All @@ -68,7 +70,7 @@ def read_brew(*args)
user_email = "#{user_login}@users.noreply.github.com"
user_email = "#{user_id}+#{user_email}" if need_plus_email
user_email
)
) if user_email.blank?

# Tell git who you are
git 'config', '--global', 'user.name', user_name
Expand Down