Added support for paged quay API requests #837
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Repo Linter | |
on: [push, pull_request] | |
jobs: | |
yaml_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3.1 | |
with: | |
# Path to custom configuration | |
config_file: .github/workflow-config/yamllint.yml | |
# Custom configuration (as YAML source) | |
# config_data: # optional | |
# Format for parsing output [parsable,standard,colored,auto] | |
# format: # optional, default is colored | |
# Return non-zero exit code on warnings as well as errors | |
# strict: # optional, default is false | |