.github: run prettier over all yml files

This commit is contained in:
Will Norris 2024-05-08 20:52:47 -07:00 committed by Will Norris
parent ef50c1f9a6
commit 2451f30f07
5 changed files with 68 additions and 68 deletions

View file

@ -6,7 +6,7 @@ on:
pull_request: pull_request:
branches: [main] branches: [main]
schedule: schedule:
- cron: '0 1 * * 6' # run weekly on Saturdays - cron: "0 1 * * 6" # run weekly on Saturdays
jobs: jobs:
analyze: analyze:
@ -20,7 +20,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
language: ['go'] language: ["go"]
steps: steps:
- name: Checkout repository - name: Checkout repository

View file

@ -2,12 +2,12 @@ name: Docker
on: on:
push: push:
branches: [ 'main' ] branches: ["main"]
tags: [ 'v*' ] tags: ["v*"]
pull_request: pull_request:
# Run the workflow on pull_request events to ensure we can still build the image. # Run the workflow on pull_request events to ensure we can still build the image.
# We only publish the image on push events (see if statements in steps below). # We only publish the image on push events (see if statements in steps below).
branches: [ 'main' ] branches: ["main"]
env: env:
REGISTRY: ghcr.io REGISTRY: ghcr.io

View file

@ -4,7 +4,7 @@ on:
- main - main
pull_request: pull_request:
branches: branches:
- '**' - "**"
name: linter name: linter
jobs: jobs:

View file

@ -4,7 +4,7 @@ on:
- main - main
pull_request: pull_request:
branches: branches:
- '**' - "**"
name: tests name: tests
env: env:
GO111MODULE: on GO111MODULE: on