Skip to content

Re-enable NuGet tests for .NET LTS versions #21

Re-enable NuGet tests for .NET LTS versions

Re-enable NuGet tests for .NET LTS versions #21

Workflow file for this run

name: Stale Issues and Pull Requests
on:
push:
paths:
- .github/workflows/stale-issues.yml
branches-ignore:
- dependabot/**
schedule:
# Once every day at midnight UTC
- cron: "0 0 * * *"
issue_comment:
workflow_dispatch:
permissions: {}
concurrency:
group: stale-issues
cancel-in-progress: ${{ github.event_name != 'issue_comment' }}
jobs:
stale:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Mark/Close Stale Issues and Pull Requests
uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 14
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs.
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs.
exempt-issue-labels: "help wanted"
exempt-pr-labels: "help wanted"
delete-branch: true