From e1dd9fd283b7b92cc74846a0feb6dbbb01ef5fbc Mon Sep 17 00:00:00 2001 From: Frederick Witty Date: Thu, 16 Oct 2025 15:12:19 -0400 Subject: [PATCH] Add workflow to auto add new issues to project Signed-off-by: Frederick Witty --- .../workflows/add_repo_issue_to_gh_project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/add_repo_issue_to_gh_project.yml diff --git a/.github/workflows/add_repo_issue_to_gh_project.yml b/.github/workflows/add_repo_issue_to_gh_project.yml new file mode 100644 index 0000000..4a056eb --- /dev/null +++ b/.github/workflows/add_repo_issue_to_gh_project.yml @@ -0,0 +1,17 @@ +--- + +name: Add Repo Issue to ALD GH project +on: + issues: + types: + - opened + - reopened + - transferred +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/ansible-lockdown/projects/1 + github-token: ${{ secrets.GITHUB_TOKEN }}