chore(workflows): add issues to project board (#213)

* Create main.yml

* Rename main.yml to issue.yml
This commit is contained in:
Fabi 2022-09-27 08:12:54 +02:00 committed by GitHub
parent 0719efa51a
commit 98851d4ca6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
.github/workflows/issue.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: Add new issues to kanban project
on:
issues:
types:
- opened
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.3.0
with:
# You can target a repository in a different organization
# to the issue
project-url: https://github.com/orgs/zitadel/projects/1
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}