Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically add new issues to Zeebe project board #424

Merged
merged 1 commit into from
May 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
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
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
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
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
@@ -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 }}