From a4fd2b8de532cca95b8405e69ace96caca9ede0f Mon Sep 17 00:00:00 2001 From: Jay Moran Date: Fri, 6 Oct 2023 12:41:44 -0700 Subject: [PATCH] Add add-to-project.yml --- .github/workflows/add-to-project.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/add-to-project.yml 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