rollforward Revert "disable rate squad alerts (#637)" #1154
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2022 Chainguard, Inc. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Boilerplate | |
on: | |
pull_request: | |
branches: [ 'main', 'release-*' ] | |
jobs: | |
check: | |
name: Boilerplate Check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false # Keep running if one leg fails. | |
matrix: | |
extension: | |
- go | |
- sh | |
- yaml | |
# Map between extension and human-readable name. | |
include: | |
- extension: go | |
language: Go | |
- extension: sh | |
language: Bash | |
- extension: yaml | |
language: YAML | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
with: | |
egress-policy: audit | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: chainguard-dev/actions/boilerplate@538d1927b846546b620784754c33e2a1db86e217 # main | |
with: | |
extension: ${{ matrix.extension }} | |
language: ${{ matrix.language }} |