13 lines
465 B
YAML
13 lines
465 B
YAML
name: Reconcile issue flow
|
|
description: Converge the issue work queue and reclaim stale claims
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: reconcile issue flow
|
|
shell: bash
|
|
env:
|
|
LABELS_CONF: ${{ github.workspace }}/.github/labels.conf
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
EVENT_ACTION: ${{ github.event.action }}
|
|
EVENT_ISSUE: ${{ github.event.issue.number }}
|
|
run: bash "$GITHUB_ACTION_PATH/issueflow-reconcile.sh"
|