From 1f800494b0e4b1c4d5e4e732784b209c2a6e0f33 Mon Sep 17 00:00:00 2001 From: Petar Shtuchkin Date: Thu, 23 Oct 2025 17:46:30 +0300 Subject: [PATCH] Comment workflow files --- .github/workflows/apt.yml | 7 +++++++ .github/workflows/build-n-test-all-distros.yml | 10 ++++++++++ 2 files changed, 17 insertions(+) diff --git a/.github/workflows/apt.yml b/.github/workflows/apt.yml index 5cae3ce..680311b 100644 --- a/.github/workflows/apt.yml +++ b/.github/workflows/apt.yml @@ -1,3 +1,10 @@ +# This workflow runs on regular PR/push to branches +# and is workflow_call'ed by nightly-unstable-package.yaml +# schedule to build unstable release +# The main purpose of the workflow to determine whether we need +# to use "unstable" release_tag +# The actual job dispatch is done by build-n-test-all-distros.yml + name: Build on: diff --git a/.github/workflows/build-n-test-all-distros.yml b/.github/workflows/build-n-test-all-distros.yml index c6b4b07..e8db6ec 100644 --- a/.github/workflows/build-n-test-all-distros.yml +++ b/.github/workflows/build-n-test-all-distros.yml @@ -1,4 +1,14 @@ +# This reusable workflow implements build and test workflow part and is for +# calling from release automation and regular PR/push builds. +# +# It handles release_tag values, including empty one (empty means PR/push build) +# and unstable. +# +# Unstable run requires explicit switching to unstable branch in each job and +# action because the schedule is initiated from master branch but the target +# branch should be unstable branch. This is also handled here. + name: Build and Test All Distros on: