[deps]: Update prettier to v3.9.5 #12458
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: Build on PR Target | ||
| on: | ||
| pull_request_target: | ||
| types: [opened, synchronize, reopened] | ||
| branches: | ||
| - "main" | ||
| defaults: | ||
| run: | ||
| shell: bash | ||
| jobs: | ||
| check-run: | ||
| name: Check PR run | ||
| uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main | ||
| permissions: | ||
| contents: read | ||
| run-workflow: | ||
|
Check failure on line 20 in .github/workflows/build_target.yml
|
||
| name: Run Build on PR Target | ||
| needs: check-run | ||
| if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | ||
| uses: ./.github/workflows/build.yml | ||
| secrets: inherit | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| id-token: write | ||
| packages: write | ||
| security-events: write | ||