Skip to content

Commit

Permalink
💚 ci: I don't like the look of this
Browse files Browse the repository at this point in the history
Signed-off-by: kokodev <[email protected]>
  • Loading branch information
kokofixcomputers committed Nov 30, 2024
1 parent 4af9594 commit b20d43a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: "${{ github.event.inputs.pre_release_version }}-prerelease${{ github.event.inputs.pre_release_number }}" # Use input for tag_name.
title: "Pre-release${{ github.event.inputs.pre_release_version }}"
title: "${{ github.event.inputs.pre_release_version }}"
body: ${{ steps.changes.outputs.changes }} # Include changelog in release notes
prerelease: true
files: |
Expand Down
3 changes: 2 additions & 1 deletion commitify.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,9 @@ def main():
issuesclosed = ""
if confirmed_details["confirm_details"]:
print("Commit details confirmed! Commit initiated.")
print(f"git commit {add} -m '{answers['change_type']} {description['description']}' -m '{longdescription['longdescription']}\n{issuesclosed}\n\nSigned-off-by: {signedby['signedby']} <{signedbyemail['signedbyemail']}>'")
os.system(
f"git commit {add} -m '{answers['change_type']} {description['description']}' -m '{longdescription['longdescription']}\n{issuesclosed}\n\nSigned-off-by: {signedby['signedby']} <{signedbyemail['signedbyemail']}>'"
f"""git commit {add} -m "{answers['change_type']} {description['description']}" -m "{longdescription['longdescription']}\n{issuesclosed}\n\nSigned-off-by: {signedby['signedby']} <{signedbyemail['signedbyemail']}>" """
)
if push:
print("Pushing changes.")
Expand Down

0 comments on commit b20d43a

Please sign in to comment.