Add gre
and mpls
containers under next-hops aft entry state. Add ttl
and tos
under gre, mpls and ip-in-ip aft entry state for telemetry.
#1643
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: YAML Lint | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: YAML Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: yaml-lint individual specs | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: release | |
no_warnings: true | |
config_data: | | |
extends: default | |
rules: | |
line-length: | |
level: warning | |
- name: Concatenate spec files | |
run: bash scripts/create_concatenated_spec_file.sh | |
- name: yaml-lint concatenated spec | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: concatenated_spec_file.yml | |
no_warnings: true | |
config_data: | | |
extends: default | |
rules: | |
line-length: | |
level: warning |