From 3e143d9101bfd5f42e74dc3980d287a2b1adbce3 Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Fri, 27 Jun 2025 18:20:51 -0400 Subject: [PATCH] [DOCS] Added workaround on workflow security issues --- .github/workflows/version-management.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/version-management.yml b/.github/workflows/version-management.yml index e965519..d006f57 100644 --- a/.github/workflows/version-management.yml +++ b/.github/workflows/version-management.yml @@ -178,6 +178,16 @@ jobs: - Updated F-Droid metadata - Created changelog file - After merging this PR, please create a tag with: `git tag ${{ env.GIT_TAG }} && git push origin ${{ env.GIT_TAG }}` + After merging this PR, please create a tag with: + ```sh + git checkout main && git pull origin main + git tag ${{ env.GIT_TAG }} && git push origin ${{ env.GIT_TAG }} + ``` + + **Note**: Due to security restrictions, when this PR is opened, the CI workflows are not triggered automatically. To trigger the workflows, you can make an empty commit with the following command: + + ```sh + git commit --allow-empty -m "chore: empty commit for triggering workflows" && git push + ``` branch: ${{ env.BRANCH_NAME }} base: ${{ github.ref_name }}