mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-26 23:18:25 +00:00
Issue template roadmap (#4625)
* Check project label * Check project label * Add GA to add issue to roadmap * Add roadmap url
This commit is contained in:
parent
0e3d1092ec
commit
5751b8d75f
1
.github/ISSUE_TEMPLATE/epic.md
vendored
1
.github/ISSUE_TEMPLATE/epic.md
vendored
@ -4,7 +4,6 @@ about: Roadmap track of features
|
||||
title: ''
|
||||
labels: 'epic'
|
||||
assignees: ''
|
||||
projects: 'Roadmap'
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
|
||||
19
.github/workflows/assign-project-to-issue.yml
vendored
Normal file
19
.github/workflows/assign-project-to-issue.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: Auto Assign Issues to Roadmap
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [ labeled ]
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
jobs:
|
||||
assign_to_project:
|
||||
runs-on: ubuntu-latest
|
||||
name: Assign topic to Project
|
||||
steps:
|
||||
- name: Assign issues with new-topic label to GitHub Project
|
||||
uses: srggrs/assign-one-project-github-action@1.2.0
|
||||
if: contains(github.event.issue.labels.*.name, 'epic')
|
||||
with:
|
||||
project: 'https://github.com/orgs/open-metadata/projects/6'
|
||||
column_name: 'No Status'
|
||||
Loading…
x
Reference in New Issue
Block a user