🐛 fix(renovate): update reviewer and assignee assignment
- change from using github.actor to github.repository_owner for reviewer assignment - change from using github.actor to github.repository_owner for assignee assignment - ensure proper assignment of repository owner instead of workflow actor
This commit is contained in:
parent
ab7b4c540e
commit
65a07859d6
|
|
@ -141,8 +141,8 @@ jobs:
|
|||
- name: Add reviewer and comment for major PR
|
||||
if: steps.check-labels.outputs.enable == 'false'
|
||||
run: |
|
||||
gh pr edit $PR_NUMBER --add-reviewer ${{ github.actor }}
|
||||
gh pr edit $PR_NUMBER --add-assignee ${{ github.actor }}
|
||||
gh pr edit $PR_NUMBER --add-reviewer ${{ github.repository_owner }}
|
||||
gh pr edit $PR_NUMBER --add-assignee ${{ github.repository_owner }}
|
||||
|
||||
- name: remove labels
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in New Issue