mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-11 00:02:37 -04:00
18 lines
384 B
YAML
18 lines
384 B
YAML
name: Stale Issues and PRs
|
|
on:
|
|
schedule:
|
|
- cron: "0 8 * * *"
|
|
workflow_dispatch:
|
|
inputs:
|
|
dryRun:
|
|
description: Set to true for a dry run
|
|
required: false
|
|
default: "false"
|
|
type: string
|
|
|
|
jobs:
|
|
stale_workflow:
|
|
uses: turbot/steampipe-workflows/.github/workflows/stale.yml@main
|
|
with:
|
|
dryRun: ${{ github.event.inputs.dryRun }}
|