From 7a31909de636c6cc8b1c2e367dbfdb81f25d7731 Mon Sep 17 00:00:00 2001 From: fields37 <20584379+fields37@users.noreply.github.com> Date: Sat, 24 Jun 2023 19:25:55 -0400 Subject: [PATCH] Create issues-to-project.yml Workflow to add issues to the "DCC Engineering" project when they are created, edited, or reopened. --- .github/workflows/issues-to-project.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/issues-to-project.yml diff --git a/.github/workflows/issues-to-project.yml b/.github/workflows/issues-to-project.yml new file mode 100644 index 00000000..f0a2c40a --- /dev/null +++ b/.github/workflows/issues-to-project.yml @@ -0,0 +1,14 @@ +name: move new, edited, reopened issues to DCC Engineering project + +on: + issues: + types: [ opened, edited, reopened ] +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/digitalcredentials/projects/14 + github-token: ${{ secrets.PROJECTS_ACCESS_TOKEN }}