Skip to content

Commit

Permalink
chore: define workflow to add issues to project board
Browse files Browse the repository at this point in the history
  • Loading branch information
sripwoud committed May 20, 2024
1 parent 09adad6 commit 1c4f9bd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Add Opened Issue to Project

on:
issues:
types: [opened, reopened]

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/privacy-scaling-explorations/projects/45 # https://github.com/<orgs|users>/<orgName|userName>/projects/<projectNumber>
github-token: ${{ secrets.GHPAT_FOR_PROJECT_ACTION }} # specific access token different from GITHUB_TOKEN required (see https://github.com/marketplace/actions/add-to-github-projects#creating-a-pat-and-adding-it-to-your-repository)

0 comments on commit 1c4f9bd

Please sign in to comment.