feat: 优化 Issue GitHub Actions,当研发团队成员评论后再移除 待处理 标签(11)

pull/10870/head^2
Bai 2023-06-29 17:11:29 +08:00 committed by Bryan
parent 3c707996e0
commit d0bf5b46f6
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ jobs:
- name: Get Organization name
id: org_name
run: echo "{data}=$(echo '${{ github.repository }}' | cut -d '/' -f 1)" >> $GITHUB_OUTPUT
run: echo "{data}=$(echo '${{ github.repository }}' | cut -d '/' -f 1)" >> "$GITHUB_OUTPUT"
- name: Get Organization public members
uses: octokit/request-action@v2.x
@ -42,7 +42,7 @@ jobs:
- name: Process public members data
# 将 members 中的数据转化为 login 字段的拼接字符串
id: member_names
run: echo "{data}=$(echo '${{ steps.members.outputs.data }}' | jq '[.[].login] | join(",")')" >> $GITHUB_OUTPUT
run: echo "{data}=$(echo '${{ steps.members.outputs.data }}' | jq '[.[].login] | join(",")')" >> "$GITHUB_OUTPUT"
- run: "echo members: '${{ steps.members.outputs.data }}'"