Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/lint-javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on: # yamllint disable-line rule:truthy
pull_request:
workflow_dispatch:


permissions:
contents: read

jobs:
lint:
name: Lint Javascript
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint-kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on: # yamllint disable-line rule:truthy
workflow_dispatch:
pull_request:


permissions:
contents: read

jobs:
ktlint:
name: Lint Kotlin
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on: # yamllint disable-line rule:truthy
- ".github/linters/phpcs.xml"
- ".github/workflows/php-lint.yml"


permissions:
contents: read

jobs:
phpcs:
name: "PHP Linter"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on: # yamllint disable-line rule:truthy
pull_request:
workflow_dispatch:


permissions:
contents: read

jobs:
rubocop:
name: RuboCop
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/writeme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on: # yamllint disable-line rule:truthy
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:


permissions:
contents: read

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on: # yamllint disable-line rule:truthy
pull_request:
workflow_dispatch:


permissions:
contents: read

jobs:
yamllint:
name: Lint Yaml
Expand Down
Loading