diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml new file mode 100644 index 0000000..a8d0345 --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,23 @@ +name: Project + +on: + issues: + types: + - opened + + pull_request: + types: + - opened + +jobs: + build: + name: Add to project + runs-on: ubuntu-latest + + steps: + - name: Add To GitHub projects + uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/codelicia/projects/4 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} +