Skip to content

Bump the gomod group across 1 directory with 2 updates #135

Bump the gomod group across 1 directory with 2 updates

Bump the gomod group across 1 directory with 2 updates #135

Workflow file for this run

# This file is automatically generated by terraform. I hope it's
# readable, but please don't edit it.
"jobs":
"can_enqueue":
"if": "always() && github.event_name != 'merge_group'"
"needs":
- "ci_go"
- "ci_nix"
"permissions":
"actions": "read"
"runs-on": "ubuntu-latest"
"steps":
- "env":
"NEEDS_JSON": "${{toJSON(needs)}}"
"name": "Transform outcomes"
"run": |
echo "ALL_SUCCESS=$(echo "$NEEDS_JSON" | jq '. | to_entries | map([.value.result == "success", .value.result == "skipped"] | any) | all')" >>$GITHUB_ENV
- "name": "check"
"run": "[ $ALL_SUCCESS == true ]"
"can_merge":
"if": "always() && github.event_name == 'merge_group'"
"needs":
- "ci_go"
- "ci_nix"
"permissions":
"actions": "read"
"runs-on": "ubuntu-latest"
"steps":
- "env":
"NEEDS_JSON": "${{toJSON(needs)}}"
"name": "Transform outcomes"
"run": |
echo "ALL_SUCCESS=$(echo "$NEEDS_JSON" | jq '. | to_entries | map([.value.result == "success", .value.result == "skipped"] | any) | all')" >>$GITHUB_ENV
- "name": "check"
"run": "[ $ALL_SUCCESS == true ]"
"can_see_status":
"runs-on": "ubuntu-latest"
"steps":
- "name": "Immediate success for improved visibility on github merge queue"
"run": "true"
"ci_go":
"secrets": "inherit"
"uses": "./.github/workflows/ci_go.yml"
"ci_nix":
"secrets": "inherit"
"uses": "./.github/workflows/ci_nix.yml"
"name": "CI"
"on":
"merge_group": {}
"pull_request":
"branches": "main"
"push":
"branches":
- "main"
"workflow_dispatch": {}