chore(deps): bump esbuild, vite and @vitejs/plugin-react #168
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@v5 | |
| welcome-pr: | |
| name: Welcome New Contributors (PR) | |
| if: github.event_name == 'pull_request' && github.event.action == 'opened' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/first-interaction@v1 | |
| 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]` | |
| welcome-issue: | |
| name: Welcome New Contributors (Issue) | |
| if: github.event_name == 'issues' && github.event.action == 'opened' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| 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@v9 | |
| 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 |