@@ -5,12 +5,12 @@ inputs:
5
5
Run :
6
6
required : false
7
7
description : |
8
- A PowerShell Script that uses ugit .
8
+ A PowerShell Script that uses GQL .
9
9
Any files outputted from the script will be added to the repository.
10
10
If those files have a .Message attached to them, they will be committed with that message.
11
11
SkipScriptFile :
12
12
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'
14
14
InstallModule :
15
15
required : false
16
16
description : A list of modules to be installed from the PowerShell gallery before scripts run.
@@ -92,13 +92,13 @@ runs:
92
92
Write-Host "::debug:: GQLAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')"
93
93
& {<#
94
94
.Synopsis
95
- GitHub Action for ugit
95
+ GitHub Action for GQL
96
96
.Description
97
- GitHub Action for ugit . This will:
97
+ GitHub Action for GQL . This will:
98
98
99
- * Import ugit
99
+ * Import GQL
100
100
* 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
102
102
* If any `-ActionScript` was provided, run scripts from the action path that match a wildcard pattern.
103
103
104
104
If you will be making changes using the GitHubAPI, you should provide a -GitHubToken
@@ -108,13 +108,13 @@ runs:
108
108
#>
109
109
110
110
param(
111
- # A PowerShell Script that uses ugit .
111
+ # A PowerShell Script that uses GQL .
112
112
# Any files outputted from the script will be added to the repository.
113
113
# If those files have a .Message attached to them, they will be committed with that message.
114
114
[string]
115
115
$Run,
116
116
117
- # If set, will not process any files named *.ugit .ps1
117
+ # If set, will not process any files named *.GQL .ps1
118
118
[switch]
119
119
$SkipScriptFile,
120
120
@@ -174,7 +174,7 @@ runs:
174
174
175
175
176
176
$anyFilesChanged = $false
177
- $ActionModuleName = 'PSJekyll '
177
+ $ActionModuleName = 'GQL '
178
178
$actorInfo = $null
179
179
180
180
0 commit comments