From 1070c585381980abe8f636af5212457711a51f03 Mon Sep 17 00:00:00 2001 From: Owen <62473795+theowenyoung@users.noreply.github.com> Date: Wed, 23 Sep 2020 05:13:29 +0800 Subject: [PATCH] feat: support custom GITHUB_RUN_ID, GITHUB_RUN_NUMBER (#369) * feat: add fromJSON support * feat: support custom runId and runNumber * chore: manual update * chore: lint --- .actrc | 1 - Makefile | 2 +- pkg/runner/run_context.go | 13 ++++++++++--- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.actrc b/.actrc index 3fbeb49d..e69de29b 100644 --- a/.actrc +++ b/.actrc @@ -1 +0,0 @@ --P ubuntu-latest=nektos/act-environments-ubuntu:18.04 diff --git a/Makefile b/Makefile index f18a5dec..02c41020 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ build: .PHONY: test test: - $(ACT) + $(ACT) -W examples/workflows --verbose .PHONY: install install: build diff --git a/pkg/runner/run_context.go b/pkg/runner/run_context.go index 158d8f69..971765a3 100644 --- a/pkg/runner/run_context.go +++ b/pkg/runner/run_context.go @@ -351,13 +351,20 @@ func (rc *RunContext) getGithubContext() *githubContext { if !ok { token = os.Getenv("GITHUB_TOKEN") } - + runID := rc.Config.Env["GITHUB_RUN_ID"] + if(runID == ""){ + runID = "1" + } + runNumber := rc.Config.Env["GITHUB_RUN_NUMBER"] + if(runNumber == ""){ + runNumber = "1" + } ghc := &githubContext{ Event: make(map[string]interface{}), EventPath: "/github/workflow/event.json", Workflow: rc.Run.Workflow.Name, - RunID: "1", - RunNumber: "1", + RunID: runID, + RunNumber: runNumber, Actor: rc.Config.Actor, EventName: rc.Config.EventName, Token: token,