Sha256: 41ea85b0fcf162281c7931ba4c288ab2318cb6721896ec263dfbf0ef0fe505cc

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

name: "Mark or close stale issues and PRs"
on:
  schedule:
  - cron: "00 10 * * *"

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/stale@v8
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        days-before-stale: 30
        days-before-close: 7
        stale-issue-message: "This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 7 days"
        stale-pr-message: "This PR has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this PR will be closed in 7 days"
        close-issue-message: "This issue was automatically closed because of stale in 7 days"
        close-pr-message: "This PR was automatically closed because of stale in 7 days"
        stale-pr-label: "stale"
        stale-issue-label: "stale"
        exempt-issue-labels: "waiting-for-triage,bug,help wanted,enhancement"
        exempt-pr-labels: "waiting-for-triage,bug,help wanted,enhancement"
        exempt-all-assignees: true
        exempt-all-milestones: true

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-s3-1.8.2 .github/workflows/stale-actions.yml
fluent-plugin-s3-1.8.1 .github/workflows/stale-actions.yml
fluent-plugin-s3-1.8.0 .github/workflows/stale-actions.yml