Skip to content

Commit b1751e5

Browse files
Merge pull request #13 from pytorch-fdn/reginankenchor-patch-8
Create auto-move-project.yml
2 parents e55b5aa + e42c518 commit b1751e5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Auto-Move Issues in GitHub Project"
2+
on:
3+
issues:
4+
types: [labeled]
5+
6+
jobs:
7+
move-to-project-column:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Move Issue in Project
11+
uses: actions/[email protected]
12+
with:
13+
project-url: "https://github.com/orgs/pytorch-fdn/projects/1" # Update with your actual project link
14+
github-token: ${{ secrets.GITHUB_TOKEN }}
15+
label-to-column-mapping: |
16+
nomination: "New Submissions"
17+
pending-review: "Pending Review"
18+
approved: "Approved"
19+
needs-more-info: "Needs More Info"
20+
rejected: "Rejected"

0 commit comments

Comments
 (0)