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
feat: Support custom repository and working-directory (#23)
* feat: Support custom repository and working-directory
Useful for when you have multiple repositories checked out
* refactor: only change working directory is input provided
* chore: update dist
* chore: sort inputs by name
---------
Co-authored-by: David Sanders <[email protected]>
Copy file name to clipboardExpand all lines: action.yml
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,21 @@ inputs:
18
18
message:
19
19
description: The commit message
20
20
required: true
21
+
owner:
22
+
description: The owner of the GitHub repo, defaults to the owner of the repository this action is running in
23
+
required: false
21
24
ref:
22
25
description: Git reference to associate the commit with (e.g. `main`). If it does not exist it will be created. Defaults to the the current checkout ref.
23
26
required: false
27
+
repository:
28
+
description: The GitHub repository to commit to, defaults to the repository this action is running in
29
+
required: false
24
30
token:
25
31
description: The GitHub app installation token
26
32
required: true
33
+
working-directory:
34
+
description: The working directory, defaults to the current working directory
0 commit comments