Skip to content

.github/workflows/stale.yml #4

.github/workflows/stale.yml

.github/workflows/stale.yml #4

Workflow file for this run

---
name: stale
on:
schedule:
# Run weekly on Saturdays
- cron: "30 1 * * 6"
# Run the workflow manually
workflow_dispatch:
# Declare default permissions as read-only
permissions: read-all
jobs:
mark-stale:
# Call reusable workflow file
uses: agntcy/github-reusable-workflows/.github/workflows/_stale.yml@main

Check failure on line 17 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/stale.yml

Invalid workflow file

error parsing called workflow ".github/workflows/stale.yml" -> "agntcy/github-reusable-workflows/.github/workflows/_stale.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
permissions:
contents: read
issues: write
pull-requests: write
with:
days-until-stale: 60
days-until-close: 7
stale-label: "stale"
exempt-label: "keep"