add new field to bq (audience_pattern) #631
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 2024 Chainguard, Inc. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Boilerplate | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
check: | |
permissions: | |
contents: read | |
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: Check out code | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- uses: chainguard-dev/actions/boilerplate@main | |
with: | |
extension: ${{ matrix.extension }} | |
language: ${{ matrix.language }} |