Skip to content

Commit

Permalink
Create assign-issues-to-project.yml (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
fundthmcalculus authored Jul 29, 2022
1 parent a3a32ad commit bba5391
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/assign-issues-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Assign Issues to Project
on:
workflow_dispatch:
pull_request:
branches:
- main
issues:
types: [ opened, reopened, closed ]

permissions:
actions: read
repository-projects: write
issues: write
contents: write

jobs:
assign_issues_action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: trinsic-id/assign-issues-to-project@v0.1.2
id: assignissues
with:
githubToken: ${{ secrets.API_GITHUB_TOKEN }}
projectNumber: 4
orgName: trinsic-id
repoName: sdk # TODO - ${{ github.event.repository.name }} ?

0 comments on commit bba5391

Please sign in to comment.