Get Opera Ready for MV3 #53
Workflow file for this run
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: Build Browser on PR Target | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches-ignore: | |
- 'l10n_master' | |
- 'cf-pages' | |
paths: | |
- 'apps/browser/**' | |
- 'libs/**' | |
- '*' | |
- '!*.md' | |
- '!*.txt' | |
workflow_call: | |
inputs: {} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
check-run: | |
name: Check PR run | |
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main | |
run-workflow: | |
name: Run Build Browser on PR Target | |
needs: check-run | |
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | |
uses: ./.github/workflows/build-browser.yml | |
secrets: inherit | |