1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/.github/workflows/auto-move-to-in-progress-on-assign.yml

21 lines
1 KiB
YAML
Raw Normal View History

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"