mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 12:40:22 -05:00

* [PM-15127] Remove secrets requirement from build workflow * Remove unneeded check, fix target workflow * Remove IF
22 lines
445 B
YAML
22 lines
445 B
YAML
name: Build on PR Target
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, synchronize]
|
|
|
|
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 on PR Target
|
|
needs: check-run
|
|
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
|
uses: ./.github/workflows/build.yml
|
|
secrets: inherit
|