We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c278c7e commit 859f8c3Copy full SHA for 859f8c3
1 file changed
.github/workflows/labeler.yml
@@ -59,6 +59,14 @@ jobs:
59
NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }}
60
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61
62
+ - name: Assign new internal pull requests to author
63
+ id: assign-to-author
64
+ if: steps.is_elastic_member.outputs.result == 'true' && github.event_name == 'pull_request_target'
65
+ run: gh issue edit "${NUMBER}" --add-assignee "${{ github.actor }}" --repo "${{ github.repository }}"
66
+ env:
67
+ NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }}
68
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69
+
70
- name: Assign new internal pull requests to project
71
id: add-to-project
72
if: steps.is_elastic_member.outputs.result == 'true' && github.event_name == 'pull_request_target'
0 commit comments