Skip to content

Commit

Permalink
Merge pull request #23 from alerque/fix-actions-service-name
Browse files Browse the repository at this point in the history
Fix Github Actions service name
  • Loading branch information
moteus authored Jan 17, 2020
2 parents dc86563 + 9c69aee commit bc06063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/luacov/coveralls/CiInfo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ local CI_CONFIG = {
message = "CI_COMMIT_TITLE";
};

actions = {
github = {
branch = "GITHUB_REF";
service_number = NULL;
pull_request = NULL;
Expand Down Expand Up @@ -126,7 +126,7 @@ local function ci_name()
if (ENV.APPVEYOR or ''):lower() == "true" then return "appveyor" end
if (ENV.DRONE or ''):lower() == "true" then return "drone" end
if (ENV.GITLAB_CI or ''):lower() == "true" then return "gitlab" end
if (ENV.GITHUB_ACTIONS or ''):lower() == "true" then return "actions" end
if (ENV.GITHUB_ACTIONS or ''):lower() == "true" then return "github" end
end

local function cfg()
Expand Down

0 comments on commit bc06063

Please sign in to comment.