chore(deps-dev): bump undici from 7.28.0 to 7.29.0 #198
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: Contributor Automation | |
| on: | |
| pull_request: | |
| types: [opened] | |
| issues: | |
| types: [opened] | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| auto-label: | |
| name: Auto Label PRs | |
| if: github.event_name == 'pull_request' && github.event.action == 'opened' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/labeler@b8dd2d9be0f68b860e7dae5dae7d772984eacd6d # v6.2.0 | |
| welcome: | |
| name: Welcome New Contributors | |
| # first-interaction v3 requires both issue_message and pr_message at | |
| # runtime (even though action.yml marks neither as required), so a single | |
| # job handles both events with both messages supplied. | |
| if: github.event.action == 'opened' && (github.event_name == 'pull_request' || github.event_name == 'issues') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| pr_message: | | |
| Thanks for your first pull request! Please make sure you've gone through this checklist: | |
| - [ ] `cargo fmt --manifest-path src-tauri/Cargo.toml --check` passes | |
| - [ ] `npx oxlint .` passes | |
| - [ ] All tests pass (`cargo test` and `npx vitest run`) | |
| - [ ] `CHANGELOG.md` updated under `[Unreleased]` | |
| issue_message: | | |
| Thanks for opening your first issue! We'll take a look as soon as possible. In the meantime, please make sure you've provided enough context for us to reproduce or understand the problem. | |
| stale: | |
| name: Mark Stale Issues and PRs | |
| if: github.event_name == 'schedule' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0 | |
| with: | |
| 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 within 7 days. | |
| 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 within 7 days. | |
| days-before-stale: 60 | |
| days-before-close: 7 |