dacc1dcbf9
* Add go-tests-success job and make go-test-enterprise conditional * fixing lint-32bit reference * fixing reference to -go-test-troubleshoot * add all jobs that fan out. * fixing success job to need set up * add echo to success job * adding success jobs to build-artifacts, build-distros, and frontend. * changing the name of the job in verify ci to be consistent with other workflows * enable go-tests, build-distros, and verify-ci to run on merge to main and release branches because they currently do not with just the pull_request trigger
24 lines
479 B
YAML
24 lines
479 B
YAML
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
# verify-ci is a no-op workflow that must run on every PR. It is used in a
|
|
# branch protection rule to detect when CI workflows are not running.
|
|
name: verify-ci
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
# Push events on the main branch
|
|
- main
|
|
- release/**
|
|
|
|
jobs:
|
|
verify-ci-success:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "verify-ci succeeded"
|