Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/pr-status-checks-workflow-call-fork.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: PR Status Checks

on:
pull_request_target:
branches:
- main

concurrency:
group: ${{ github.event.pull_request.head.repo.full_name }}-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-fork
cancel-in-progress: true

permissions:
pull-requests: write
contents: write
packages: read
actions: write
checks: write
statuses: write

jobs:
pr-status-check:
if: ${{ github.event.pull_request.head.repo.full_name != 'openmcp-project/blueprint-building-blocks' }}
uses: "openmcp-project/blueprint-workflows/.github/workflows/git-pr-status-checks.yml@main"
4 changes: 1 addition & 3 deletions .github/workflows/pr-status-checks-workflow-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
pull_request:
branches:
- main
pull_request_target:
branches:
- main

concurrency:
group: ${{ github.event.pull_request.head.repo.full_name }}-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -22,4 +19,5 @@ permissions:

jobs:
pr-status-check:
if: ${{ github.event.pull_request.head.repo.full_name == 'openmcp-project/blueprint-building-blocks' }}
uses: "openmcp-project/blueprint-workflows/.github/workflows/git-pr-status-checks.yml@main"
Loading