mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 13:58:08 +00:00
add auto-move-to-in-progress-on-assign.yml workflow
This commit is contained in:
parent
10d7e8f4c7
commit
7f458326eb
1 changed files with 20 additions and 0 deletions
20
.github/workflows/auto-move-to-in-progress-on-assign.yml
vendored
Normal file
20
.github/workflows/auto-move-to-in-progress-on-assign.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Auto Move to In Progress on Assign
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- assigned
|
||||
jobs:
|
||||
move-to-in-progress:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Move Issue to In Progress
|
||||
run: |
|
||||
PROJECT_NODE_ID=$(gh project view --owner "${{ github.repository_owner }}" "${PROJECT_ID}" --format json --jq .id)
|
||||
PROJECT_ITEM_ID=$(ISSUE_NUMBER="${{ github.event.issue.number }}" gh project item-list --owner "${{ github.repository_owner }}" "${PROJECT_ID}" --limit 100000 --format json --jq '.items[] | select(.content.repository == env.GITHUB_REPOSITORY and .content.number == (env.ISSUE_NUMBER | tonumber)) | .id')
|
||||
gh project item-edit --project-id "${PROJECT_NODE_ID}" --id "${PROJECT_ITEM_ID}" --field-id "${STATUS_FIELD_ID}" --single-select-option-id "${IN_PROGRESS_STATUS_ID}"
|
||||
env:
|
||||
# read:org project
|
||||
GITHUB_TOKEN: "${{ secrets.ADD_TO_PROJECT_PAT }}"
|
||||
PROJECT_ID: "2"
|
||||
STATUS_FIELD_ID: PVTSSF_lAHOABpmus0uuM4AAVPr
|
||||
IN_PROGRESS_STATUS_ID: "98236657"
|
Loading…
Add table
Reference in a new issue