Parse secret inputs in reusable workflows (#41)

Secrets can be passed to reusable workflows, either explicitly by key or
implicitly by `inherit`:

https://docs.github.com/en/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow

Reviewed-on: https://gitea.com/gitea/act/pulls/41
Reviewed-by: Jason Song <i@wolfogre.com>
Co-authored-by: Galen Abell <galen@galenabell.com>
Co-committed-by: Galen Abell <galen@galenabell.com>
This commit is contained in:
Galen Abell
2023-04-17 13:41:02 +08:00
committed by Jason Song
parent ac1ba34518
commit 9bdddf18e0
4 changed files with 37 additions and 0 deletions

View File

@@ -37,6 +37,11 @@ func TestParse(t *testing.T) {
options: nil,
wantErr: false,
},
{
name: "has_secrets",
options: nil,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {