0f6a580ceb
* Initial plan * feat: add GitHub Project automation for feature request tracking Co-authored-by: DanielVolz <3275994+DanielVolz@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: DanielVolz <3275994+DanielVolz@users.noreply.github.com>
20 lines
412 B
YAML
20 lines
412 B
YAML
name: Add to Project
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, labeled]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add issue to project
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/add-to-project@v1.0.2
|
|
with:
|
|
project-url: ${{ vars.PROJECT_URL }}
|
|
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|
|
labeled: enhancement, bug, triage
|
|
label-operator: OR
|