Skip to content

Commit

Permalink
Create add-to-project workflow (#184)
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 88db93f commit 71c62af
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 71c62af

Please sign in to comment.