Skip to content

josefaidt/add-issue-to-projects-beta

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

add-issue-to-projects-beta action

  1. to get started, create a Personal Access Token
    1. for project boards under a user, be sure to give the token full repo rights
    2. for project boards under an organization, be sure to give read/write org permissions
  2. add the token to your repo's actions' secrets as TOKEN
  3. add the action
name: Add new issues to project board
on:
  issues:
    types:
      - opened
jobs:
  add-to-project:
    runs-on: ubuntu-latest
    steps:
      - name: Add Issue to Project
        uses: josefaidt/add-issue-to-projects-beta@v1
        with:
          github-token: ${{ secrets.TOKEN }}
          project-number: 2
          project-owner: 'josefaidt'