From a6f2cf81c5f02d4d8cf3957fc36c81b62f63785f Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Wed, 26 Jul 2023 11:12:17 -0400 Subject: [PATCH] chore(gh): add to project (#162) Added GitHub Action to add issues and pull requests to the linked project. Signed-off-by: Ryan Johnson --- .github/workflows/project.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/project.yml diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml new file mode 100644 index 00000000..87563356 --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,22 @@ +name: Add to Project +on: + issues: + types: + - opened + - reopened + - transferred + - labeled + pull_request: + types: + - opened + - reopened + - labeled +jobs: + add-to-project: + name: Add to Project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@31b3f3ccdc584546fc445612dec3f38ff5edb41c + with: + project-url: 'https://github.com/orgs/vmware/projects/22' + github-token: '${{ secrets.GH_ADD_TO_PROJECT }}'