Skip to content

.github/workflows/stale.yml #488

.github/workflows/stale.yml

.github/workflows/stale.yml #488

Workflow file for this run

name: Mark stale issues and pull requests
on:
schedule:
- cron: '31 1 * * *'
jobs:
create-runner:
name: Create Runner
uses: hpc-sw/create_runners/.github/workflows/create_runners.yaml@master

Check failure on line 10 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" -> "hpc-sw/create_runners/.github/workflows/create_runners.yaml@master" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secrets: inherit
stale:
needs: create-runner
runs-on: ['${{ needs.create-runner.outputs.runner_name }}', 'ignore']
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'