Sha256: 3da2698537d0bcd7b84b8b513db5bba3fe1f686fb32ead5d54878e8ded6471ec

Contents?: true

Size: 1.44 KB

Versions: 1

Compression:

Stored size: 1.44 KB

Contents

# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests

on:
  schedule:
  - cron: '31 3 * * *' # randomly chosen time of day

jobs:
  stale:

    runs-on: ubuntu-latest
    permissions:
      issues: write
      pull-requests: write

    steps:
    - uses: actions/stale@v3
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        days-before-issue-stale: 90
        days-before-pr-stale: 30
        days-before-close: 10
        stale-issue-message: |-
          This issue seems inactive. If it's still relevant, please add a comment saying so. Otherwise, take no action.

          → If there's no activity within a week, then a bot will automatically close this.

          Thanks for helping to improve Shopify's dev tooling and experience.
        stale-pr-message: |-
          This PR seems inactive. If it's still relevant, please add a comment saying so. Otherwise, take no action.

          → If there's no activity within a week, then a bot will automatically close this.

          Thanks for helping to improve Shopify's dev tooling and experience.
        stale-issue-label: 'no-issue-activity'
        stale-pr-label: 'no-pr-activity'
        operations-per-run: 10 # temporary so we can ease into staling and see what happens

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shopify-cli-2.15.0 .github/workflows/stale.yml