Skip to content

Commit

Permalink
pragma to disable yamllint
Browse files Browse the repository at this point in the history
  • Loading branch information
obscurerichard committed Jan 5, 2025
1 parent 9edc089 commit 6323208
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-latest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Build and Deploy Latest

on:
on: # yamllint disable-line
push:
branches:
- 'main'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-tag.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Build Tag

on:
on: # yamllint disable-line
push:
tags:
- '*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Build

on: pull_request
on: pull_request # yamllint disable-line

jobs:
build:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Lint

on: pull_request
on: pull_request # yamllint disable-line

jobs:

Expand All @@ -25,4 +25,5 @@ jobs:
uses: py-actions/flake8@v2
# There are too many errors to start with to fail on this
continue-on-error: true
plugins: "flake8-pyproject"
with:
plugins: "flake8-pyproject"

0 comments on commit 6323208

Please sign in to comment.