Sha256: 393c5ac2ec9dd89918e3eef9a4072a6c3fb46aed2362385601ca4a2ce03e5ba6

Contents?: true

Size: 1.02 KB

Versions: 8

Compression:

Stored size: 1.02 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@v3
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        days-before-stale: 90
        days-before-close: 30
        stale-issue-message: "This issue has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this issue will be closed in 30 days"
        stale-pr-message: "This PR has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this PR will be closed in 30 days"
        close-issue-message: "This issue was automatically closed because of stale in 30 days"
        close-pr-message: "This PR was automatically closed because of stale in 30 days"
        stale-pr-label: "stale"
        stale-issue-label: "stale"
        exempt-issue-labels: "bug,enhancement,help wanted"
        exempt-pr-labels: "bug,enhancement,help wanted"

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fluent-plugin-kafka-0.18.1 .github/workflows/stale-actions.yml
fluent-plugin-kafka-0.18.0 .github/workflows/stale-actions.yml
fluent-plugin-kafka-0.17.5 .github/workflows/stale-actions.yml
fluent-plugin-kafka-0.17.4 .github/workflows/stale-actions.yml
fluent-plugin-kafka-0.17.3 .github/workflows/stale-actions.yml
fluent-plugin-kafka-0.17.2 .github/workflows/stale-actions.yml
fluent-plugin-kafka-0.17.1 .github/workflows/stale-actions.yml
fluent-plugin-kafka-0.17.0 .github/workflows/stale-actions.yml