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:
parent
ef50c1f9a6
commit
2451f30f07
5 changed files with 68 additions and 68 deletions
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: gomod
|
||||
- package-ecosystem: gomod
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: monthly
|
||||
|
|
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/linter.yml
vendored
2
.github/workflows/linter.yml
vendored
|
@ -4,7 +4,7 @@ on:
|
|||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
- "**"
|
||||
name: linter
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -4,7 +4,7 @@ on:
|
|||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
- "**"
|
||||
name: tests
|
||||
env:
|
||||
GO111MODULE: on
|
||||
|
|
Loading…
Reference in a new issue