Update notify_slack_new_github_release and send_top_show_hn_email to … #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stale Issues and PRs | ||
on: | ||
schedule: | ||
- cron: "30 23 * * *" | ||
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/.gitlab/workflows/stale.yml@main | ||
with: | ||
dryRun: ${{ gitlab.event.inputs.dryRun }} |