Close issues with label
ActionsTags
(1)This is an Action that closes issues based on the provided label.
To test this GitHub Action, replace the LABEL
variable with one you want to check an close on a regular cadence.
on:
schedule:
- cron: 0 5 * * 3
name: Weekly Issue Closure
jobs:
cycle-weekly-close:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: weekly-issue-closure
uses: bdougie/close-issues-based-on-label@master
env:
LABEL: wontfix
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Close issues with label is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.