mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-15 21:48:13 +03:00
25 lines
525 B
YAML
25 lines
525 B
YAML
name: Close Stale Feature Requests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 1" # Runs every Monday at midnight
|
|
workflow_dispatch:
|
|
inputs:
|
|
dry-run:
|
|
description: "Log matching issues without closing them"
|
|
required: false
|
|
default: false
|
|
type: boolean
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
jobs:
|
|
close-stale-feature-requests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: pocket-id/low-demand-closer@v1
|
|
with:
|
|
dry-run: ${{ inputs['dry-run'] || false }}
|