18 lines
354 B
YAML
18 lines
354 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]
|
||
|
|
||
|
jobs:
|
||
|
noop:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- run: echo "ok"
|