Skip to content

Commit 78deb1a

Browse files
committed
fix(generate_prs): Remove @ from author, and only add it in the PR description.
1 parent c9ed75c commit 78deb1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/generate_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
- name: Set commit message for manual dispatch
129129
if: ${{ github.event_name == 'workflow_dispatch' }}
130130
run: |
131-
echo "AUTHOR=@${{ github.event.sender.login }}" >> "$GITHUB_ENV"
131+
echo "AUTHOR=${{ github.event.sender.login }}" >> "$GITHUB_ENV"
132132
echo "REASON=${{ github.event.inputs.message }}" >> "$GITHUB_ENV"
133133
- name: Set commit message for schedule
134134
if: ${{ github.event_name == 'schedule' }}

playbook/group_vars/all/vars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pr_body: |
2626
>
2727
> | **Trigger-message** |
2828
> | - |
29-
> | {{ author }}: {{ reason }} |
29+
> | @{{ author }}: {{ reason }} |
3030

3131
> [!TIP]
3232
> Please update the change type as appropriate.

0 commit comments

Comments
 (0)