File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : Private Action Loader
2
- description : ' Allows a private action to be easily reused across repos '
2
+ description : Enables private Actions to be easily reused across repositories.
3
3
inputs :
4
4
repo-token :
5
5
description : ' Access token with read access to the repo containing action'
6
6
required : true
7
7
repo-name :
8
8
description : ' The organization/user and repo where action is stored, with support for @ref'
9
9
required : true
10
- repo-branch :
11
- description : ' The branch to pull private action from. Defaults to master'
12
- required : false
13
10
runs :
14
11
using : ' node12'
15
12
main : ' dist/index.js'
13
+ branding :
14
+ icon : ' lock'
15
+ color : ' green'
Original file line number Diff line number Diff line change @@ -5265,7 +5265,7 @@ async function run () {
5265
5265
5266
5266
core . info ( `Cloning action from https://***TOKEN***@github.com/${ repo } .git${ sha ? ` (SHA: ${ sha } )` : '' } ` )
5267
5267
await exec . exec ( cmd )
5268
-
5268
+
5269
5269
core . info ( 'Remove github token from config' )
5270
5270
await exec . exec ( `git remote set-url origin https://github.com/${ repo } .git` , null , { cwd : WORKING_DIR } )
5271
5271
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ async function run () {
24
24
25
25
core . info ( `Cloning action from https://***TOKEN***@github.com/${ repo } .git${ sha ? ` (SHA: ${ sha } )` : '' } ` )
26
26
await exec . exec ( cmd )
27
-
27
+
28
28
core . info ( 'Remove github token from config' )
29
29
await exec . exec ( `git remote set-url origin https://github.com/${ repo } .git` , null , { cwd : WORKING_DIR } )
30
30
You can’t perform that action at this time.
0 commit comments