Skip to content

Commit

Permalink
Github Actions Migration - move verify-ci workflows to GHA (#16777)
Browse files Browse the repository at this point in the history
* add verify-ci workflow

* adding comment and changing to on pull request.

* changing to pull_requests

* changing to pull_request
  • Loading branch information
jmurret committed Mar 28, 2023
1 parent 0f55035 commit 76694ab
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/verify-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 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"

0 comments on commit 76694ab

Please sign in to comment.