fix: repair mangled YAML in bulk-repo-sync tag enforcement step

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-22 08:46:59 +00:00
parent 14c4408e8d
commit c78cd167ea
+14
View File
@@ -104,6 +104,20 @@ jobs:
fi
- name: Enforce Release Channel Tags if: success() run: | echo "Enforcing standard tags on all repos..." bash automation/enforce_tags.sh ${{ inputs.dry_run == true && --dry-run || }} env: GA_TOKEN: ${{ secrets.GA_TOKEN }} GITEA_URL: https://git.mokoconsulting.tech GITEA_ORG: MokoConsulting
- name: Enforce Release Channel Tags
if: success()
run: |
echo "Enforcing standard tags on all repos..."
if [ "\${{ inputs.dry_run }}" = "true" ]; then
bash automation/enforce_tags.sh --dry-run
else
bash automation/enforce_tags.sh
fi
env:
GA_TOKEN: \${{ secrets.GA_TOKEN }}
GITEA_URL: https://git.mokoconsulting.tech
GITEA_ORG: MokoConsulting
- name: Upload Sync Log
if: always()
uses: actions/upload-artifact@v4