testing macOS runner to use rosetta for jit #3399
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mark stale pull requests | ||
on: | ||
# Temporarily disabled for JIT-focused development | ||
if: false | ||
schedule: | ||
- cron: "0 */6 * * *" | ||
jobs: | ||
stale: | ||
if: github.repository_owner == 'python' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
timeout-minutes: 10 | ||
steps: | ||
- name: "Check PRs" | ||
uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.' | ||
stale-pr-label: 'stale' | ||
days-before-issue-stale: -1 | ||
days-before-pr-stale: 30 | ||
days-before-close: -1 | ||
ascending: true | ||
operations-per-run: 120 |