Skip to content

Commit d32c740

Browse files
committed
ci: Implement sync to internal resources
Signed-off-by: Iuliu-Antoniu Popovici <[email protected]>
1 parent 99d6b88 commit d32c740

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/trigger-sync.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Trigger sync
2+
3+
description:
4+
'Trigger external sync workflow.'
5+
6+
on:
7+
workflow_dispatch:
8+
pull_request:
9+
branches:
10+
- main
11+
paths:
12+
- ".github/workflows/trigger-sync.yml"
13+
14+
15+
jobs:
16+
test-sync:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Test sync
20+
shell: sh
21+
run: |
22+
echo "Sync signal sent!"
23+

0 commit comments

Comments
 (0)