Skip to content

Commit

Permalink
Merge pull request #424 from camunda/auto-add_to_zeebe_project
Browse files Browse the repository at this point in the history
Automatically add new issues to Zeebe project board
  • Loading branch information
remcowesterhoud committed May 11, 2022
2 parents 2c2d512 + 4064505 commit 5c492b4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'type: bug'
labels: ['type: bug', 'team/process-automation']
assignees: ''

---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Documentation
about: 'Missing or incorrect documentation '
title: ''
labels: 'type: documentation'
labels: ['type: documentation', 'team/process-automation']
assignees: ''

---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'type: enhancement'
labels: ['type: enhancement', 'team/process-automation']
assignees: saig0

---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/new-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: New Release
about: Building a new release
title: "[Release] 1.x.y"
labels: 'type: release'
labels: ['type: release', 'team/process-automation']
assignees: koevskinikola, saig0

---
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/project-new-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Assign new issues to the default project
on:
issues:
types: [ opened, reopened, transferred ]
jobs:
assign:
name: Assign to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.0.3
with:
project-url: https://github.com/orgs/camunda/projects/18
github-token: ${{ secrets.PROJECT_ADMIN_TOKEN }}

0 comments on commit 5c492b4

Please sign in to comment.