Skip to content

Commit

Permalink
ci: add an add-to-project workflow (#1590)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaminyam authored Feb 23, 2023
1 parent 3f10d46 commit 798a827
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Add bugs to bugs project

on:
issues:
types:
- opened

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
# You can target a repository in a different organization
# to the issue
project-url: https://github.com/orgs/lablup/projects/13
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
- uses: actions/[email protected]
with:
# You can target a repository in a different organization
# to the issue
project-url: https://github.com/orgs/lablup/projects/20
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 comments on commit 798a827

Please sign in to comment.