Adding active branches to actions

This commit is contained in:
David Vennik
2023-01-07 17:46:08 +00:00
parent c8803c18ff
commit d30afc3366
2 changed files with 4 additions and 4 deletions

View File

@@ -5,9 +5,9 @@ name: Go
on: on:
push: push:
branches: [ "main" ] branches: [ "main", "protocol", "ind-bootstrap" ]
pull_request: pull_request:
branches: [ "main" ] branches: [ "main", "protocol", "ind-bootstrap" ]
jobs: jobs:

View File

@@ -10,9 +10,9 @@ var (
// GitRef is the gitref, as in refs/heads/branchname. // GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/protocol" GitRef = "refs/heads/protocol"
// ParentGitCommit is the commit hash of the parent HEAD. // ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "0c1d790011c29f145d8e0f04e2ec00701819e793" ParentGitCommit = "cd0c99e5869a8180ca762bba1468298f4ad9cbd9"
// BuildTime stores the time when the current binary was built. // BuildTime stores the time when the current binary was built.
BuildTime = "2023-01-07T17:43:47Z" BuildTime = "2023-01-07T17:46:08Z"
// SemVer lists the (latest) git tag on the release. // SemVer lists the (latest) git tag on the release.
SemVer = "v0.1.4" SemVer = "v0.1.4"
// PathBase is the path base returned from runtime caller. // PathBase is the path base returned from runtime caller.