You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(action): fix input and output descriptions in action.yml (#406)
* docs(action): fix input and output descriptions in action.yml
* Update Wording
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
---------
Co-authored-by: Kranthi Poturaju <Kranthi.Poturaju1@aexp.com>
Co-authored-by: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: action.yml
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ inputs:
25
25
required: false
26
26
default: ''
27
27
file_pattern:
28
-
description: File pattern used for `git add`. For example `src/*.js`
28
+
description: File pattern used for `git add` and the dirty-check (`git status`). Supports multiple space-separated patterns. For example `src/*.js`
29
29
required: false
30
30
default: '.'
31
31
repository:
@@ -74,26 +74,29 @@ inputs:
74
74
default: false
75
75
disable_globbing:
76
76
description: Stop the shell from expanding filenames (https://www.gnu.org/software/bash/manual/html_node/Filename-Expansion.html)
77
+
required: false
77
78
default: false
78
79
create_branch:
79
80
description: Create new branch with the name of `branch`-input in local and remote repository, if it doesn't exist yet.
81
+
required: false
80
82
default: false
81
83
create_git_tag_only:
82
84
description: Perform a clean git tag and push, without commiting anything
83
85
required: false
84
86
default: false
85
87
internal_git_binary:
86
88
description: Internal use only! Path to git binary used to check if git is available. (Don't change this!)
89
+
required: false
87
90
default: git
88
91
89
92
90
93
outputs:
91
94
changes_detected:
92
-
description: Value is "true", if the repository was dirty and file changes have been detected. Value is "false", if no changes have been detected.
95
+
description: Value is "true" if matching changes were detected and committed. Value is "false" if no matching changes were detected or only CRLF changes were staged. Not set in `create_git_tag_only` mode.
93
96
commit_hash:
94
-
description: Full hash of the created commit. Only present if the "changes_detected" output is "true".
97
+
description: Full hash of the created commit. Only set when a commit was actually made (i.e. `changes_detected` is "true").
95
98
create_git_tag_only:
96
-
description: Value is "true", if a git tag was created using the `create_git_tag_only`-input.
99
+
description: Set to "true" when the action ran in `create_git_tag_only` mode. Never set to "false".
0 commit comments