mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2025-12-23 12:41:57 +00:00
Update trigger_rebuild.yaml
This commit is contained in:
47
.github/workflows/trigger_rebuild.yaml
vendored
47
.github/workflows/trigger_rebuild.yaml
vendored
@@ -9,52 +9,13 @@ jobs:
|
|||||||
trigger:
|
trigger:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Test repository access
|
- name: Trigger rebuild
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.PUBLIC_ACTION_TRIGGER_TOKEN }}
|
|
||||||
run: |
|
run: |
|
||||||
if [ -z "$GH_TOKEN" ]; then
|
curl -L \
|
||||||
echo "Error: PUBLIC_ACTION_TRIGGER_TOKEN secret is not set"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Testing repository access..."
|
|
||||||
repo_response=$(curl -s -o /dev/null -w "%{http_code}" \
|
|
||||||
-H "Accept: application/vnd.github+json" \
|
|
||||||
-H "Authorization: Bearer $GH_TOKEN" \
|
|
||||||
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
||||||
https://api.github.com/repos/Cian-H/my_nvim)
|
|
||||||
|
|
||||||
echo "Repository access status code: $repo_response"
|
|
||||||
|
|
||||||
if [ "$repo_response" -eq 200 ]; then
|
|
||||||
echo "Repository is accessible, attempting dispatch..."
|
|
||||||
dispatch_response=$(curl -s -o /dev/null -w "%{http_code}" \
|
|
||||||
-X POST \
|
-X POST \
|
||||||
-H "Accept: application/vnd.github+json" \
|
-H "Accept: application/vnd.github+json" \
|
||||||
-H "Authorization: Bearer $GH_TOKEN" \
|
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-H "X-GitHub-Api-Version: 2022-11-28" \
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
||||||
https://api.github.com/repos/Cian-H/my_nvim/dispatches \
|
https://api.github.com/repos/Cian-H/my_nvim/dispatches \
|
||||||
-d '{"event_type":"rebuild-container"}')
|
-d '{"event_type":"rebuild-container"}'
|
||||||
|
|
||||||
echo "Dispatch status code: $dispatch_response"
|
|
||||||
|
|
||||||
if [ "$dispatch_response" -ne 204 ]; then
|
|
||||||
# Get the error message
|
|
||||||
error_msg=$(curl -s \
|
|
||||||
-X POST \
|
|
||||||
-H "Accept: application/vnd.github+json" \
|
|
||||||
-H "Authorization: Bearer $GH_TOKEN" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
||||||
https://api.github.com/repos/Cian-H/my_nvim/dispatches \
|
|
||||||
-d '{"event_type":"rebuild-container"}')
|
|
||||||
|
|
||||||
echo "Error response: $error_msg"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "Cannot access repository"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|||||||
Reference in New Issue
Block a user