Skip to content

Commit 3ed444e

Browse files
author
Chris Pine
authored
Create add-to-project workflow (#185)
Creates GitHub workflow to add new issues/PRs to the project board, using the existing shared workflow. We first tested this in bufbuild/knit#28
1 parent cccb48f commit 3ed444e

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Add issues and PRs to project
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- reopened
8+
- transferred
9+
pull_request_target:
10+
types:
11+
- opened
12+
- reopened
13+
issue_comment:
14+
types:
15+
- created
16+
17+
jobs:
18+
call-workflow-add-to-project:
19+
name: Call workflow to add issue to project
20+
uses: bufbuild/base-workflows/.github/workflows/add-to-project.yaml@main
21+
secrets: inherit

0 commit comments

Comments
 (0)