summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/go.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index a81d06cca..0869fb8db 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -14,10 +14,11 @@ jobs:
- id: setup
run: |
if ! [[ -z "${{ secrets.GO_TOKEN }}" ]]; then
- echo ::set-output has_token=true
+ echo ::set-output name=has_token::true
else
- echo ::set-output has_token=false
+ echo ::set-output name=has_token::false
fi
+ - run: |
jq -nc '{"state": "pending", "context": "go tests"}' | \
curl -sL -X POST -d @- \
-H "Content-Type: application/json" \