Fix comments on StepType enum consts (#304)

This commit is contained in:
Amit Mahbubani
2020-07-13 22:09:23 +05:30
committed by GitHub
父節點 7dcd0bc1bb
當前提交 0b9268ada7
共有 2 個文件被更改,包括 4 次插入4 次删除

查看文件

@@ -276,10 +276,10 @@ const (
//StepTypeUsesDockerURL is all steps that have a `uses` that is of the form `docker://...`
StepTypeUsesDockerURL
//StepTypeUsesActionLocal is all steps that have a `uses` that is a reference to a github repo
//StepTypeUsesActionLocal is all steps that have a `uses` that is a local action in a subdirectory
StepTypeUsesActionLocal
//StepTypeUsesActionRemote is all steps that have a `uses` that is a local action in a subdirectory
//StepTypeUsesActionRemote is all steps that have a `uses` that is a reference to a github repo
StepTypeUsesActionRemote
)