style(yaml_lint): fixed yaml lint errors

yaml lint was producing linting errors. Amended affected lines.

#1
This commit is contained in:
2021-08-11 13:47:34 +09:30
parent d20a56fa0c
commit def31ef562
4 changed files with 21 additions and 23 deletions

View File

@ -22,13 +22,13 @@
after_script: after_script:
- echo deactivate - echo deactivate
artifacts: artifacts:
expire_in: 3 days expire_in: 3 days
when: always when: always
paths: paths:
- "artifacts/*" - "artifacts/*"
reports: reports:
junit: junit:
- "$CI_PROJECT_DIR/artifacts/$CI_JOB_STAGE/tests/*.junit.xml" - "$CI_PROJECT_DIR/artifacts/$CI_JOB_STAGE/tests/*.junit.xml"
rules: rules:
- if: '$CI_COMMIT_BRANCH == "master"' - if: '$CI_COMMIT_BRANCH == "master"'
when: never when: never

View File

@ -50,11 +50,11 @@
junit: junit:
- "$CI_PROJECT_DIR/artifacts/$CI_JOB_STAGE/tests/*.junit.xml" - "$CI_PROJECT_DIR/artifacts/$CI_JOB_STAGE/tests/*.junit.xml"
rules: rules:
- if: '$CI_COMMIT_BRANCH == "master"' - if: '$CI_COMMIT_BRANCH == "master"'
when: never when: never
- if: '$CI_COMMIT_BRANCH' - if: '$CI_COMMIT_BRANCH'
when: always when: always
- when: never - when: never
MR Title: MR Title:

View File

@ -14,9 +14,7 @@
artifacts: artifacts:
expire_in: 1 day expire_in: 1 day
rules: rules:
- if: '$CI_COMMIT_BRANCH == "master"' - if: '$CI_COMMIT_BRANCH == "master"'
- if: '$CI_COMMIT_BRANCH == "development"' - if: '$CI_COMMIT_BRANCH == "development"'
when: always when: always

View File

@ -85,10 +85,10 @@ commit footer refs:
junit: junit:
- "$CI_PROJECT_DIR/artifacts/$CI_JOB_STAGE/tests/*.junit.xml" - "$CI_PROJECT_DIR/artifacts/$CI_JOB_STAGE/tests/*.junit.xml"
rules: rules:
- if: '$CI_COMMIT_BRANCH == "master"' - if: '$CI_COMMIT_BRANCH == "master"'
- if: '$CI_COMMIT_BRANCH == "development"' - if: '$CI_COMMIT_BRANCH == "development"'
when: never when: never
- if: '$CI_COMMIT_BRANCH && $CHANGELOG_FOOTER_REFERENCES != "False"' - if: '$CI_COMMIT_BRANCH && $CHANGELOG_FOOTER_REFERENCES != "False"'
when: always when: always
- when: never - when: never