Skip to content

stNamco/add-card-to-project

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

add-card-to-project

just add issue or pr to github project

Example Usage

name: Add card to project

on:
  issues:
    types:
      - opened

jobs:
  add-card-to-project:
    name: Add issue to project
    runs-on: ubuntu-latest
    steps:
      - uses: stNamco/[email protected]
        with:
          githubToken: ${{secrets.EXAMPLE_PAT}}
          ownerType: user
          ownerName: stNamco
          projectNumber: 6
          repositoryName: example-issues
          issueId: ${{ github.event.issue.number }}

Action inputs

Name Description
githubToken repo and project scoped Personal Access Token (PAT).
ownerType user or organization.
ownerName user name or organization name.
repositoryName github repository name.
projectNumber github project numeber.
issueId the issue or pr id.