diff --git a/.forgejo/workflows/CD.yml b/.forgejo/workflows/CD.yml index 571447d..f845f1d 100644 --- a/.forgejo/workflows/CD.yml +++ b/.forgejo/workflows/CD.yml @@ -94,8 +94,8 @@ jobs: -d "{\"extra_vars\": {\"target_host\": \"$TARGET_HOST\", \"folder\": \"$FOLDER\"}}" \ "https://awx.mafyuh.xyz/api/v2/job_templates/13/launch/" - - name: Delay for 2 minutes - run: sleep 120 # 120 seconds = 2 minutes + - name: Delay for 45 seconds + run: sleep 45 - name: Fetch AWX Job Logs run: | diff --git a/.forgejo/workflows/get-logs.yml b/.forgejo/workflows/get-logs.yml deleted file mode 100644 index 5568ac1..0000000 --- a/.forgejo/workflows/get-logs.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: Get AWX Job Logs -on: - workflow_call: - inputs: - name: get-logs-trigger - -jobs: - fetch-logs: - runs-on: docker - steps: - - name: Get AWX Job Logs - run: | - # Fetch the most recent job from AWX - job_id=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/job_templates/13/jobs?order_by=-id | jq -r '.results[0].id') - - # Fetch the logs for the job - curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/jobs/$job_id/stdout/