Skip to content

Commit 2052bf4

Browse files
authored
Merge pull request #525 from ClickHouse/repo-dispatch-placeholder
ci: add `test_cloud_results.yml` placeholder workflow
2 parents 038f51e + 1cd93fc commit 2052bf4

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: "test_cloud_results"
3+
4+
# yamllint disable-line rule:truthy
5+
on:
6+
workflow_dispatch:
7+
repository_dispatch:
8+
types: [test_cloud_results]
9+
10+
permissions:
11+
id-token: write
12+
contents: read
13+
14+
jobs:
15+
update_commit_status:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Placeholder
22+
run: |
23+
echo "This is a placeholder job to trigger on repository_dispatch events."
24+
25+
- name: Print event details
26+
run: |
27+
echo "Event Name: ${{ github.event_name }}"
28+
echo "Event: ${{ github.event }}"

0 commit comments

Comments
 (0)