Skip to content

Commit

Permalink
Create add-issues-to-project.yaml (#4459)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppbaena authored Mar 23, 2022
1 parent 0ce2531 commit 42d5a56
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/add-issues-to-project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Auto Assign to Project(s)

on:
issues:
types: [opened]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign NEW issues to project
uses: srggrs/assign-one-project-github-action@1.3.1
if: github.event.action == 'opened'
with:
project: 'https://github.com/orgs/kubeapps/projects/4'
- name: Assign NEW issues to classic project
uses: srggrs/assign-one-project-github-action@1.3.1
if: github.event.action == 'opened'
with:
project: 'https://github.com/orgs/kubeapps/kubeapps/projects/11'

0 comments on commit 42d5a56

Please sign in to comment.