Skip to content

Commit 8aed0f3

Browse files
authored
[Feature:Developer] Auto add PRs in this repo to project (#46)
Due to limitations of the Github Project feature, PRs in this repo are not currently automatically added to the project board. This PR adds a Github Action that auto-adds new PRs in this repo to the project board.
1 parent a92a8af commit 8aed0f3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/add_to_project.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Add PR to project board"
2+
on:
3+
pull_request_target:
4+
types:
5+
- opened
6+
7+
env:
8+
PR_URL: ${{ github.event.pull_request.html_url }}
9+
10+
jobs:
11+
title-check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Generate token
15+
id: generate-token
16+
uses: actions/create-github-app-token@v1
17+
with:
18+
app-id: ${{ vars.APP_ID }}
19+
private-key: ${{ secrets.APP_PEM }}
20+
21+
- name: Add PR to project
22+
env:
23+
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
24+
run: |
25+
gh project item-add --owner Submitty 1 --url "$PR_URL"

0 commit comments

Comments
 (0)