diff --git a/.github/workflows/add-to-kanban.yml b/.github/workflows/add-to-kanban.yml new file mode 100644 index 0000000..45aa70a --- /dev/null +++ b/.github/workflows/add-to-kanban.yml @@ -0,0 +1,16 @@ +name: Add to engineer kanban + +on: + issues: + types: [opened, reopened, transferred] + pull_request: + types: [opened, reopened, ready_for_review] + +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/tracebloc/projects/2 + github-token: ${{ secrets.PROJECTS_KANBAN_TOKEN }}