Public Access
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user