Skip to content

Commit

Permalink
Merge pull request #43 from dokku/josegonzalez-patch-1
Browse files Browse the repository at this point in the history
fix: do not run linting twice for pull requests
  • Loading branch information
josegonzalez committed May 13, 2023
2 parents be10b61 + 1765918 commit 98cb8cc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
name: 'lint'

# yamllint disable-line rule:truthy
on: [push, pull_request]
on:
pull_request:
branches:
- '*'
push:
branches:
- 'master'

jobs:
hadolint:
Expand Down

0 comments on commit 98cb8cc

Please sign in to comment.