4
0
Fork 0

Merge pull request #406 from ansible-lockdown/auto_issue_to_project

Add workflow to auto add new issues to project
This commit is contained in:
Frederick Witty 2025-10-16 15:54:55 -04:00 committed by GitHub
commit 72f6b38cc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 }}