0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2024-12-16 21:56:43 -05:00

.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

@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: gomod
- package-ecosystem: gomod
directory: "/"
schedule:
interval: monthly

View file

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

View file

@ -2,12 +2,12 @@ name: Docker
on:
push:
branches: [ 'main' ]
tags: [ 'v*' ]
branches: ["main"]
tags: ["v*"]
pull_request:
# 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).
branches: [ 'main' ]
branches: ["main"]
env:
REGISTRY: ghcr.io

View file

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

View file

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