Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group across 1 directory #119
This file contains 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: Lock Threads | |
on: | |
push: | |
paths: | |
- .github/workflows/lock-threads.yml | |
branches-ignore: | |
- dependabot/** | |
schedule: | |
# Once every month on the 1st at 14:15 UTC | |
- cron: "15 14 1 * *" | |
issue_comment: | |
permissions: | |
issues: write | |
pull-requests: write | |
concurrency: | |
group: lock-threads | |
cancel-in-progress: ${{ github.event_name != 'issue_comment' }} | |
jobs: | |
lock-threads: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Lock Outdated Threads | |
uses: dessant/lock-threads@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
process-only: 'issues, prs' | |
issue-inactive-days: 30 | |
add-issue-labels: outdated | |
pr-inactive-days: 30 | |
add-pr-labels: outdated |