1
0
mirror of https://github.com/bitwarden/server synced 2026-01-09 12:03:21 +00:00

[PM-15127] Remove secrets requirement from build workflow (#5546)

* [PM-15127] Remove secrets requirement from build workflow

* Remove unneeded check, fix target workflow

* Remove IF
This commit is contained in:
Daniel García
2025-03-31 15:19:55 +02:00
committed by GitHub
parent f60db791cc
commit 887332b436
3 changed files with 52 additions and 22 deletions

21
.github/workflows/build_target.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
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