Github - 自动将问题分配给项目

Dot*_*reM 19 automation github github-actions github-issues

我想将问题自动分配给 Github 中的项目。基本上自动为每个自动打开的问题自动生成以下屏幕截图。有任何想法吗?

在此输入图像描述

Ben*_* W. 19

有两个本机支持的选项:


pet*_*ans 7

您可以使用create-or-update-project-card来实现此目的。

on:
  issues:
    types: [opened]
jobs:
  createCard:
    runs-on: ubuntu-latest
    steps:
      - name: Create or Update Project Card
        uses: peter-evans/create-or-update-project-card@v1
        with:
          project-name: My project
          column-name: My column
Run Code Online (Sandbox Code Playgroud)