Skip to content

Commit

Permalink
fix: Allow git commands in the current directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nfelt14 committed Sep 5, 2024
1 parent 7aeb5ac commit 53d777d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions actions/find_unreleased_changelog_items/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def main() -> None:
# If running in GitHub Actions, and the release_level is set, send the release level and
# incoming changes to the GitHub Summary
if release_level:
subprocess.check_call(["git", "config", "--global", "--add", "safe.directory", "."]) # noqa: S603,S607
commit_messages = get_commit_messages(since_tag=get_latest_tag())

pr_regex = re.compile(r"\(#\d+\)$")
Expand Down

0 comments on commit 53d777d

Please sign in to comment.