-
-
Notifications
You must be signed in to change notification settings - Fork 6
41 lines (36 loc) · 1.14 KB
/
s3-trigger.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: ⏰ Delayed Trigger for S3 Sync
on:
push:
branches:
- main
paths:
- 'posts/**'
permissions: write-all
jobs:
wait-and-trigger:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: 🔟 Wait for 10 seconds
run: sleep 10
- name: 🔀 Check for newer commits
id: check-commits
run: |
LATEST_COMMIT=$(git log -1 --format='%H')
CURRENT_COMMIT=${{ github.sha }}
if [ "$LATEST_COMMIT" != "$CURRENT_COMMIT" ]; then
echo "Newer commit found. Stopping workflow."
echo "::set-output name=abort::true"
fi
- name: ⚡ Trigger main workflow
if: steps.check-commits.outputs.abort != 'true'
run: |
curl -L \
-X POST \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{ github.repository }}/actions/workflows/sync-s3-posts.yml/dispatches \
-d "{\"ref\":\"main\"}"