Sha256: 0d2848add78aa28188f25b8085d7475b1d2510881474623c6f2cd734a1be4875

Contents?: true

Size: 857 Bytes

Versions: 4

Compression:

Stored size: 857 Bytes

Contents

name: Mark stale issues and pull requests

on:
  schedule:
  - cron: "0 0 * * *"

jobs:
  stale:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/stale@v1
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        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. Thank you  for your contributions.'
        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. Thank you for your contributions.'
        stale-issue-label: 'no-issue-activity'
        stale-pr-label: 'no-pr-activity'
        days-before-stale: 30
        days-before-close: 5
        exempt-pr-label: 'pinned'
        exempt-issue-label: 'pinned'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
omniauth-facebook-9.0.0 .github/workflows/stale.yml
omniauth-facebook-8.0.0 .github/workflows/stale.yml
omniauth-facebook-7.0.0 .github/workflows/stale.yml
omniauth-facebook-6.0.0 .github/workflows/stale.yml