diff --git a/.github/ISSUE_TEMPLATE/epic.md b/.github/ISSUE_TEMPLATE/epic.md index bf63fa510ce..abaf4b75efc 100644 --- a/.github/ISSUE_TEMPLATE/epic.md +++ b/.github/ISSUE_TEMPLATE/epic.md @@ -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.** diff --git a/.github/workflows/assign-project-to-issue.yml b/.github/workflows/assign-project-to-issue.yml new file mode 100644 index 00000000000..f4807328545 --- /dev/null +++ b/.github/workflows/assign-project-to-issue.yml @@ -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'