docs: Massive Awesome List expansion and branding fixes

This commit is contained in:
AltStack Bot
2026-02-26 20:58:36 +05:30
parent 1b12fcbd2a
commit a6518487bc
3 changed files with 127 additions and 118 deletions

30
.github/workflows/redeploy-site.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
name: Trigger Site Redeploy
on:
push:
branches:
- main
paths:
- 'data/**'
- 'deployments/**'
workflow_dispatch:
jobs:
ping-vercel:
runs-on: ubuntu-latest
steps:
- name: Trigger Vercel Deploy Hook
if: env.VERCEL_DEPLOY_HOOK != ''
run: |
curl -X POST "$VERCEL_DEPLOY_HOOK"
env:
VERCEL_DEPLOY_HOOK: ${{ secrets.VERCEL_DEPLOY_HOOK }}
- name: Log status
run: |
if [ -z "${{ secrets.VERCEL_DEPLOY_HOOK }}" ]; then
echo "⚠️ VERCEL_DEPLOY_HOOK secret not set. Skipping auto-redeploy."
echo "Please add VERCEL_DEPLOY_HOOK to your repository secrets to enable automation."
else
echo "🚀 Deployment trigger sent successfully."
fi