Skip to content

Commit

Permalink
Create add-to-project workflow
Browse files Browse the repository at this point in the history
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
  • Loading branch information
chrispine committed Feb 13, 2024
1 parent a654ff1 commit 984d337
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/add-to-project.yaml
@@ -0,0 +1,21 @@
name: Add issues and PRs to project

on:
issues:
types:
- opened
- reopened
- transferred
pull_request_target:
types:
- opened
- reopened
issue_comment:
types:
- created

jobs:
call-workflow-add-to-project:
name: Call workflow to add issue to project
uses: bufbuild/base-workflows/.github/workflows/add-to-project.yaml@main
secrets: inherit

0 comments on commit 984d337

Please sign in to comment.