github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/.github/workflows/assign_bugs_questions_project.yaml (about)

     1  name: Auto Assign to Bugs and Questions
     2  
     3  on:
     4    issues:
     5      types: [labeled]
     6  env:
     7    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
     8  
     9  jobs:
    10    assign_bug_project:
    11      runs-on: ubuntu-latest
    12      name: Assign to Bugs and Questions Project
    13      steps:
    14        - name: Run issues assignment to project Question and Bug Reports Kanban
    15          uses: srggrs/assign-one-project-github-action@1.2.0
    16          if: |
    17            contains(github.event.issue.labels.*.name, 'type/bug')
    18          with:
    19            project: 'https://github.com/pingcap/tiflow/projects/13'
    20            column_name: 'Need Triage'