Skip to content

Commit

Permalink
chore: Add workflow to manage issues and PRs (#10)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?

Adds a workflow to add new issues & PRs to the Honeycomb github project.
  • Loading branch information
MikeGoldsmith committed Jul 11, 2023
1 parent 67e55cd commit 52c0579
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/add-to-project-v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Add to project
on:
issues:
types: [ opened ]
pull_request_target:
types: [ opened ]
jobs:
add-to-project:
runs-on: ubuntu-latest
name: Add issues and PRs to project
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/honeycombio/projects/11
github-token: ${{ secrets.GHPROJECTS_TOKEN }}

0 comments on commit 52c0579

Please sign in to comment.