2020-07-14 21:54:56 +00:00
|
|
|
---
|
|
|
|
name: Remove labels from closed issues
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [closed]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
unlabel:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Unlabel the closed issue
|
2020-10-30 01:26:52 +00:00
|
|
|
uses: actions-ecosystem/action-remove-labels@556e306
|
2020-07-14 21:54:56 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
labels: next
|