Skip to content

Commit 42003e7

Browse files
committed
test: workflows to test events
1 parent 866a329 commit 42003e7

File tree

4 files changed

+62
-0
lines changed

4 files changed

+62
-0
lines changed

.github/workflows/on-check-run.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# Workflow to test check_run event
3+
name: On check_run dummy
4+
on:
5+
check_run:
6+
types: [completed]
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
on-push-dummy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Dummy step
16+
run: echo "This is a dummy step"

.github/workflows/on-check-suite.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# Workflow to test check_suite event
3+
name: On check_suite dummy
4+
on:
5+
check_suite:
6+
types: [completed]
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
on-push-dummy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Dummy step
16+
run: echo "This is a dummy step"

.github/workflows/on-push-dummy.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
# Workflow to test push event
3+
name: On push dummy
4+
on:
5+
push: {}
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
on-push-dummy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Dummy step
15+
run: echo "This is a dummy step"

.github/workflows/on-status.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
# Workflow to test status event
3+
name: On status dummy
4+
on:
5+
status:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
on-push-dummy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Dummy step
15+
run: echo "This is a dummy step"

0 commit comments

Comments
 (0)