2022-11-07 22:40:13 +00:00
|
|
|
name: Labeller on close
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types:
|
|
|
|
- closed
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- closed
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: "Label"
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-08 02:00:38 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
|
|
|
issues: write
|
|
|
|
|
2022-11-07 22:40:13 +00:00
|
|
|
steps:
|
|
|
|
- name: Update Labels
|
|
|
|
uses: RebeccaStevens/issue-closed-labeler-action@latest
|
|
|
|
with:
|
2022-11-08 02:17:09 +00:00
|
|
|
token: "${{ secrets.GITHUB_TOKEN }}"
|
2022-11-13 23:47:03 +00:00
|
|
|
rules: '[{"condition":"wip","remove":"wip"}]'
|