Skip to content

Commit 2842c9b

Browse files
Merge pull request #82 from ansible-lockdown/auto_issue_to_project
Add workflow to auto add new issues to project
2 parents 6d8406f + f3fba8d commit 2842c9b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
3+
name: Add Repo Issue to ALD GH project
4+
on:
5+
issues:
6+
types:
7+
- opened
8+
- reopened
9+
- transferred
10+
jobs:
11+
add-to-project:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/add-to-project@main
15+
with:
16+
project-url: https://github.com/orgs/ansible-lockdown/projects/1
17+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)