From a650ded56d2ab9dab4488eb4be470f20095efee6 Mon Sep 17 00:00:00 2001 From: Amy Leadem Date: Mon, 27 Jun 2022 12:26:52 -0700 Subject: [PATCH] Add Github action add-to-project --- .github/workflows/add-to-project.yml | 16 ++++++++++++++++ 1 file changed, 16 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..363372d76 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,16 @@ +name: Add all issues to project board + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/uswds/projects/8 + github-token: ${{ secrets.TEST_ORG_RW }}