mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-20 22:21:16 -03:00
Steps: 1. Run: build_tools/update-dependencies.sh 2. Remove obsolete small_rng feature from Cargo.toml 3. Re-run failed part 4. Run: cargo +nightly -Zunstable-options update --breaking 5. Address rng breaking changes
27 lines
805 B
YAML
27 lines
805 B
YAML
name: 'Lock threads'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 18 * * 1'
|
|
# │ │ │ │ │
|
|
# min 0-59 ┘ │ │ │ └ weekday 0-6
|
|
# hour 0-23 ┘ │ └ month 1-12
|
|
# └ day 1-31
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lock:
|
|
if: github.repository_owner == 'fish-shell'
|
|
permissions:
|
|
issues: write # for dessant/lock-threads to lock issues
|
|
pull-requests: write # for dessant/lock-threads to lock PRs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@b2726a6ae6f1e1b06eb0ff28f7e4fb5e4246bbca # v6.0.2, build_tools/update-dependencies.sh
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-inactive-days: '365'
|
|
pr-inactive-days: '365'
|
|
exclude-any-issue-labels: 'question, needs more info'
|