Skip to content

Commit 0e93662

Browse files
authored
manual_test
1 parent 206a75f commit 0e93662

3 files changed

Lines changed: 30 additions & 1 deletion

File tree

.github/workflows/manual.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: manual trigger testing or with issue
2+
3+
4+
on:
5+
issues:
6+
workflow_dispatch:
7+
inputs:
8+
name:
9+
description: Enter your name
10+
type: string
11+
required: true
12+
file:
13+
description: Enter file name
14+
type: string
15+
required: false
16+
17+
18+
19+
jobs:
20+
my_hjob1:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: print
24+
run: |
25+
echo "manual trigger by {{ inputs.name }}"
26+
cat {{ inputs.file }}
27+
28+

.github/workflows/multi event.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: multi event test
33
on:
44
issues:
55
pull_request:
6-
6+
77
jobs:
88
my_job_1 :
99
runs-on: ubuntu-latest

.github/workflows/sample.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a sample file

0 commit comments

Comments
 (0)