@@ -5,12 +5,12 @@ inputs:
55 Run :
66 required : false
77 description : |
8- A PowerShell Script that uses ugit .
8+ A PowerShell Script that uses GQL .
99 Any files outputted from the script will be added to the repository.
1010 If those files have a .Message attached to them, they will be committed with that message.
1111 SkipScriptFile :
1212 required : false
13- description : ' If set, will not process any files named *.ugit .ps1'
13+ description : ' If set, will not process any files named *.GQL .ps1'
1414 InstallModule :
1515 required : false
1616 description : A list of modules to be installed from the PowerShell gallery before scripts run.
@@ -92,13 +92,13 @@ runs:
9292 Write-Host "::debug:: GQLAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')"
9393 & {<#
9494 .Synopsis
95- GitHub Action for ugit
95+ GitHub Action for GQL
9696 .Description
97- GitHub Action for ugit . This will:
97+ GitHub Action for GQL . This will:
9898
99- * Import ugit
99+ * Import GQL
100100 * If `-Run` is provided, run that script
101- * Otherwise, unless `-SkipScriptFile` is passed, run all *.ugit .ps1 files beneath the workflow directory
101+ * Otherwise, unless `-SkipScriptFile` is passed, run all *.GQL .ps1 files beneath the workflow directory
102102 * If any `-ActionScript` was provided, run scripts from the action path that match a wildcard pattern.
103103
104104 If you will be making changes using the GitHubAPI, you should provide a -GitHubToken
@@ -108,13 +108,13 @@ runs:
108108 #>
109109
110110 param(
111- # A PowerShell Script that uses ugit .
111+ # A PowerShell Script that uses GQL .
112112 # Any files outputted from the script will be added to the repository.
113113 # If those files have a .Message attached to them, they will be committed with that message.
114114 [string]
115115 $Run,
116116
117- # If set, will not process any files named *.ugit .ps1
117+ # If set, will not process any files named *.GQL .ps1
118118 [switch]
119119 $SkipScriptFile,
120120
@@ -174,7 +174,7 @@ runs:
174174
175175
176176 $anyFilesChanged = $false
177- $ActionModuleName = 'PSJekyll '
177+ $ActionModuleName = 'GQL '
178178 $actorInfo = $null
179179
180180
0 commit comments