From 34f128b6bf860c2d431c4b8b7b68dbb70387f095 Mon Sep 17 00:00:00 2001 From: asml-mdroogle <89393128+asml-mdroogle@users.noreply.github.com> Date: Sun, 13 Aug 2023 17:36:05 +0200 Subject: [PATCH] Add secret_source to github context See https://docs.github.com/en/actions/learn-github-actions/contexts#github-context --- expr_sema.go | 1 + 1 file changed, 1 insertion(+) diff --git a/expr_sema.go b/expr_sema.go index 5a872411c..0f1af1389 100644 --- a/expr_sema.go +++ b/expr_sema.go @@ -225,6 +225,7 @@ var BuiltinGlobalVariableTypes = map[string]ExprType{ "run_id": StringType{}, "run_number": StringType{}, "run_attempt": StringType{}, + "secret_source": StringType{}, "server_url": StringType{}, "sha": StringType{}, "token": StringType{},