From c3a55eb117cae0702aafb2213e7b04ee98dd8a2a Mon Sep 17 00:00:00 2001 From: "Giau. Tran Minh" Date: Sun, 5 Jan 2025 11:31:06 +0700 Subject: [PATCH] circleci: fixed missing action context --- atlasaction/circleci_action.go | 1 + 1 file changed, 1 insertion(+) diff --git a/atlasaction/circleci_action.go b/atlasaction/circleci_action.go index 38f4dab8..4d599dc5 100644 --- a/atlasaction/circleci_action.go +++ b/atlasaction/circleci_action.go @@ -61,6 +61,7 @@ func (a *circleCIOrb) SetOutput(name, value string) { // https://circleci.com/docs/variables/#built-in-environment-variables func (a *circleCIOrb) GetTriggerContext(ctx context.Context) (*TriggerContext, error) { tc := &TriggerContext{ + Act: a, RepoURL: a.getenv("CIRCLE_REPOSITORY_URL"), Repo: a.getenv("CIRCLE_PROJECT_REPONAME"), Branch: a.getenv("CIRCLE_BRANCH"),