Skip to content

Commit 2d66242

Browse files
committed
[CI] Feature: Auto assign pr author to pr (#5661)
<!-- start pr-codex --> ## PR-Codex overview This PR introduces a new GitHub Actions workflow for automatically assigning authors to pull requests when they are opened or reopened. ### Detailed summary - Added a new workflow file: `.github/workflows/auto-assign.yml` - Defined the workflow name as `Auto Author Assign` - Set the trigger for the workflow on `pull_request` events for types `opened` and `reopened` - Specified permissions for pull requests as `write` - Created a job named `assign-author` that runs on `ubuntu-latest` - Included a step to use the action `toshimaru/auto-author-assign@v2.1.1` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 3268af6 commit 2d66242

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/auto-assign.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Auto Author Assign
2+
3+
on:
4+
pull_request:
5+
types: [ opened, reopened ]
6+
7+
permissions:
8+
pull-requests: write
9+
10+
jobs:
11+
assign-author:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: toshimaru/auto-author-assign@v2.1.1

0 commit comments

Comments
 (0)