mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-06 21:52:54 +08:00
17 lines
445 B
YAML
17 lines
445 B
YAML
name: Issue Close Check
|
|
|
|
on:
|
|
issues:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
issue-closed-remove-labels:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.issue.labels.*.name, 'stale')"
|
|
steps:
|
|
- name: Remove statle labels when issue that hasn't stale label is closed
|
|
uses: actions-cool/issues-helper@v2
|
|
with:
|
|
actions: 'remove-labels'
|
|
labels: 'state/awaiting processing,state/awaiting user feedback'
|