We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e55b5aa + e42c518 commit b1751e5Copy full SHA for b1751e5
.github/workflows/auto-move-project.yml
@@ -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