Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/pr-pre-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
build:
# This condition ensures that the job runs for all PR actions except closed unmerged,
# i.e., it runs for opened, synchronize, reopened (pre-merge) and closed merged (post-merge).

name: Build Debian Package
uses: qualcomm-linux/qcom-build-utils/.github/workflows/qcom-build-pkg-reusable-workflow.yml@main
if: ${{ github.event.action != 'closed' || github.event.pull_request.merged == true }}
with:
qcom-build-utils-ref: main
qcom-build-utils-ref: main
# PRE-MERGE: use the PR head branch (github.head_ref)
# POST-MERGE: use the base branch name from the PR (e.g. "debian/qcom-next")
debian-ref: ${{ (github.event.action == 'closed' && github.event.pull_request.merged) && github.event.pull_request.base.ref || github.head_ref }}
run-abi-checker: true
debusine-parent-workspace: ${{ vars.DEBUSINE_PARENT_WORKSPACE }}
Loading