Skip to content

Commit 625b3e3

Browse files
Updated action.yml
1 parent c745a74 commit 625b3e3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

action.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,25 @@ inputs:
1313
description: 'Local Workflow Files To Sync'
1414
default: ''
1515
required: true
16+
WORKFLOW_FILES_DIR:
17+
description: 'Local Path Where Common Workflow Files Are Located'
18+
default: 'workflows'
19+
required: false
1620
GITHUB_TOKEN:
1721
description: "Token to use to get repos and write secrets"
1822
required: true
1923
DRY_RUN:
2024
description: "Run everything except for nothing will be Updated."
2125
required: false
2226
default: 'false'
27+
AUTO_CREATE_NEW_BRANCH:
28+
description: "Auto Create New Branch If Not Exists ?"
29+
required: false
30+
default: 'false'
31+
COMMIT_EACH_FILE:
32+
description: "If set to true then all files are commited 1 by 1 instead of commiting everything @ once"
33+
required: false
34+
default: 'false'
2335

2436
runs:
2537
using: 'docker'
@@ -29,3 +41,6 @@ runs:
2941
- ${{ inputs.WORKFLOW_FILES }}
3042
- ${{ inputs.GITHUB_TOKEN }}
3143
- ${{ inputs.DRY_RUN }}
44+
- ${{ inputs.WORKFLOW_FILES_DIR }}
45+
- ${{ inputs.COMMIT_EACH_FILE }}
46+
- ${{ inputs.AUTO_CREATE_NEW_BRANCH }}

0 commit comments

Comments
 (0)