deps(frontend): bump lucide-react from 1.25.0 to 1.28.0 in /frontend #121
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
| # ============================================================================ | |
| # Copilot Code Review | |
| # ============================================================================ | |
| # Automatically requests a GitHub Copilot code review on pull requests. | |
| # Uses the GitHub API to add Copilot as a reviewer, which is the supported | |
| # mechanism for triggering Copilot code reviews. | |
| # ============================================================================ | |
| name: Copilot Code Review | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| copilot-review: | |
| name: Copilot — Code Review | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Request GitHub Copilot Code Review | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh api \ | |
| --method POST \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H "X-GitHub-Api-Version: 2022-11-28" \ | |
| "/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers" \ | |
| -f "reviewers[]=copilot" | |