We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94d97fe commit c2ca249Copy full SHA for c2ca249
.github/workflows/manual-triggered-job-example.yml
@@ -5,6 +5,12 @@ permissions:
5
6
on:
7
workflow_dispatch:
8
+ inputs:
9
+ files:
10
+ required: false
11
+ type: string
12
+ default: |
13
+ **.md **/**.md test/*.txt
14
15
jobs:
16
test:
@@ -35,8 +41,8 @@ jobs:
35
41
id: changed-files-glob
36
42
uses: ./
37
43
with:
38
- files: |
39
- test/*.txt
44
+ files: ${{ inputs.files }}
45
+ files_separator: " " # Space delimited files (default is "\n")
40
46
47
- name: Show output
48
run: |
test/test.txt
@@ -1 +1 @@
1
-This is a test file...
+This is a test file
0 commit comments