Create add-to-project.yml
This commit is contained in:
parent
e80d8e1284
commit
e5ea08c1fb
1 changed files with 15 additions and 0 deletions
15
.github/workflows/add-to-project.yml
vendored
Normal file
15
.github/workflows/add-to-project.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
name: Add to Project
|
||||||
|
|
||||||
|
on: pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add-to-project:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Add To GitHub projects
|
||||||
|
uses: actions/add-to-project@v0.3.0
|
||||||
|
with:
|
||||||
|
# URL of the project to add issues to
|
||||||
|
project-url: EllieBotDevs/Ellie-bot
|
||||||
|
# A GitHub personal access token with write access to the project
|
||||||
|
github-token: "${{ secrets.GH_PAT }}"
|
Reference in a new issue