diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 000000000..a7c19ad26 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,15 @@ +name: Add issue to project +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - name: Add issue to project + uses: actions/add-to-project@v1 + with: + github_token: ${{ secrets.PENNAI_TOKEN }} + project_url: https://github.com/orgs/EpistasisLab/projects/9 \ No newline at end of file