Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If the cspell config is in a dir then linting fails #1397

Closed
Andrew-Sheridan opened this issue Apr 9, 2022 · 12 comments
Closed

If the cspell config is in a dir then linting fails #1397

Andrew-Sheridan opened this issue Apr 9, 2022 · 12 comments
Labels
O: stale 🤖 This issue or pull request is stale, it will be closed if there is no activity

Comments

@Andrew-Sheridan
Copy link

Thanks for the great tool - we have been integrating megalinter to our pipelines have found it to be quite nice :)

During our initial configuration we have encountered some mild troubles with cspell.

To reduce the number of top-level files we store linter configs in .github/linters/
and so the cspell config is at .github/linters/cspell.json

This causes two issues:

  1. cspell does not appear to process the config.

If we have SPELL_CSPELL_CONFIG_FILE: .github/linters/cspell.json then we see this in the logs:

### Processed [SPELL] files
- Using [cspell v5.19.2] https://megalinter.github.io/v5/descriptors/spell_cspell
- MegaLinter key: [SPELL_CSPELL]
- Rules config: [/github/workspace/.github/linters/cspell.json]

which looks great except it is followed by content that shows the config is not respected.

  • spelling errors encountered etc

If we move the file to the top of the repo and adjust SPELL_CSPELL_CONFIG_FILE accordingly, the rules are followed and no errors / warnings are reported.

  1. Attempting to write the suggested cspell config fails
Traceback (most recent call last):
  File "/usr/local/lib/python3.9/runpy.py", line 197, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/usr/local/lib/python3.9/runpy.py", line 87, in _run_code
    exec(code, run_globals)
  File "/usr/local/lib/python3.9/site-packages/megalinter-0.1-py3.9.egg/megalinter/run.py", line 15, in <module>
    linter.run()
  File "/usr/local/lib/python3.9/site-packages/megalinter-0.1-py3.9.egg/megalinter/MegaLinter.py", line 132, in run
    self.process_linters_parallel(active_linters, linters_do_fixes)
  File "/usr/local/lib/python3.9/site-packages/megalinter-0.1-py3.9.egg/megalinter/MegaLinter.py", line 217, in process_linters_parallel
    updated_linters = pool_result.get()
  File "/usr/local/lib/python3.9/multiprocessing/pool.py", line 771, in get
    raise self._value
FileNotFoundError: [Errno 2] No such file or directory: '/github/workspace/report/.github/linters/cspell.json'

If we add a step to create those dirs under report before running megalinter, then it does not fail.

      - run: mkdir -p report/.github/linters

The issue might be in this block:

https://github.com/megalinter/megalinter/blob/73c41ea0e18d4bbc4f8eff9ecdfc0040cfe8ad52/megalinter/linters/CSpellLinter.py#L77-L83

which may be alleviated by including a mkdir call:

proposed_cspell_config_file = (
    reporter_self.report_folder
    + os.path.sep
    + reporter_self.master.config_file_name
)
os.makedirs(os.path.dirname(proposed_cspell_config_file), exist_ok=True)

with open(proposed_cspell_config_file, "w", encoding="utf-8") as outfile:
    json.dump(data, outfile, indent=4, sort_keys=True)

Note: We use the same location for the yaml prettier and yamllint configs and they do not appear to face these issues.

      YAML_PRETTIER_CONFIG_FILE: .github/linters/prettier.yaml
      YAML_YAMLLINT_CONFIG_FILE: .github/linters/yamllint.yaml

Our cspell config:

{
  "version": "0.2",
  "import": [
    "@cspell/dict-aws/cspell-ext.json",
    "@cspell/dict-bash/cspell-ext.json",
    "@cspell/dict-companies/cspell-ext.json",
    "@cspell/dict-filetypes/cspell-ext.json",
    "@cspell/dict-fullstack/cspell-ext.json",
    "@cspell/dict-java/cspell-ext.json",
    "@cspell/dict-python/cspell-ext.json",
    "@cspell/dict-software-terms/cspell-ext.json"
  ],
  "words": ["massmutual", "edap"],
  "ignorePaths": [
    ".github/workflows/*",
    ".github/config/*",
    ".github/linters/*",
    "poetry.lock",
    "docs/**",
    ".secrets.baseline",
    ".gitignore",
    "**/CHANGELOG.md",
    ".editorconfig"
  ]
}

Thank you!

@nvuillam
Copy link
Member

nvuillam commented Apr 9, 2022

Thanks a lot for your interest and support :)

Such behaviour is indeed strange...

Please can you try to run your pipeline with LOG_LEVEL:DEBUG in your .mega-linter.yml file or ENV var , so we can see how exactly is called cspell with your configuration ?

@Andrew-Sheridan
Copy link
Author

Andrew-Sheridan commented Apr 9, 2022

With debug enabled these are the logs:

Edit: This run had the mkdir command included so it didnt fail while writing to the report dir.

Click to expand
2022-04-09T15:59:14.0504566Z Requested labels: ubuntu-latest
2022-04-09T15:59:14.0504640Z Job defined at: massmutual/edap-workflows/.github/workflows/lint-megalinter-documentation.yaml@refs/pull/63/merge
2022-04-09T15:59:14.0504660Z Waiting for a runner to pick up this job...
2022-04-09T15:59:14.7377214Z Job is waiting for a hosted runner to come online.
2022-04-09T15:59:16.9172953Z Job is about to start running on the hosted runner: GitHub Actions 7 (hosted)
2022-04-09T15:59:20.7678106Z Current runner version: '2.289.2'
2022-04-09T15:59:20.7711109Z ##[group]Operating System
2022-04-09T15:59:20.7711767Z Ubuntu
2022-04-09T15:59:20.7712068Z 20.04.4
2022-04-09T15:59:20.7712519Z LTS
2022-04-09T15:59:20.7712897Z ##[endgroup]
2022-04-09T15:59:20.7713249Z ##[group]Virtual Environment
2022-04-09T15:59:20.7713709Z Environment: ubuntu-20.04
2022-04-09T15:59:20.7714156Z Version: 20220405.4
2022-04-09T15:59:20.7714738Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20220405.4/images/linux/Ubuntu2004-Readme.md
2022-04-09T15:59:20.7715565Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20220405.4
2022-04-09T15:59:20.7716127Z ##[endgroup]
2022-04-09T15:59:20.7716564Z ##[group]Virtual Environment Provisioner
2022-04-09T15:59:20.7716989Z 1.0.0.0-main-20220325-1
2022-04-09T15:59:20.7717385Z ##[endgroup]
2022-04-09T15:59:20.7718490Z ##[group]GITHUB_TOKEN Permissions
2022-04-09T15:59:20.7719283Z Actions: write
2022-04-09T15:59:20.7719865Z Checks: write
2022-04-09T15:59:20.7720261Z Contents: write
2022-04-09T15:59:20.7720660Z Deployments: write
2022-04-09T15:59:20.7721045Z Discussions: write
2022-04-09T15:59:20.7721478Z Issues: write
2022-04-09T15:59:20.7721802Z Metadata: read
2022-04-09T15:59:20.7722182Z Packages: write
2022-04-09T15:59:20.7722564Z Pages: write
2022-04-09T15:59:20.7722902Z PullRequests: write
2022-04-09T15:59:20.7723378Z RepositoryProjects: write
2022-04-09T15:59:20.7723814Z SecurityEvents: write
2022-04-09T15:59:20.7724160Z Statuses: write
2022-04-09T15:59:20.7724544Z ##[endgroup]
2022-04-09T15:59:20.7729221Z Secret source: Actions
2022-04-09T15:59:20.7729759Z Prepare workflow directory
2022-04-09T15:59:20.9163676Z Prepare all required actions
2022-04-09T15:59:20.9383132Z Getting action download info
2022-04-09T15:59:21.3241798Z Download action repository 'actions/checkout@v3' (SHA:a12a3943b4bdde767164f792f33f40b04645d846)
2022-04-09T15:59:21.6575754Z Download action repository 'megalinter/megalinter@v5' (SHA:982c82d840217f38f56f0d35d50eb0845fc07822)
2022-04-09T15:59:22.3897976Z Download action repository 'actions/upload-artifact@v3' (SHA:6673cd052c4cd6fcf4b4e6e60ea986c889389535)
2022-04-09T15:59:22.5593892Z Download action repository 'stefanzweifel/git-auto-commit-action@v4' (SHA:c4b132ec2c77a21fcab564bd3c92610cee84b894)
2022-04-09T15:59:22.8763955Z ##[group]Pull down action image 'megalinter/megalinter-documentation:v5'
2022-04-09T15:59:22.8845982Z ##[command]/usr/bin/docker pull megalinter/megalinter-documentation:v5
2022-04-09T15:59:23.5591486Z v5: Pulling from megalinter/megalinter-documentation
2022-04-09T15:59:23.5591926Z 4e9f2cdf4387: Pulling fs layer
2022-04-09T15:59:23.5592215Z 80d1de1f04a6: Pulling fs layer
2022-04-09T15:59:23.5592490Z 65556e11f92f: Pulling fs layer
2022-04-09T15:59:23.5592749Z 55f44be0aed3: Pulling fs layer
2022-04-09T15:59:23.5593056Z 213b80906b2b: Pulling fs layer
2022-04-09T15:59:23.5593334Z a31f74cd9d81: Pulling fs layer
2022-04-09T15:59:23.5593587Z 00e3434880dd: Pulling fs layer
2022-04-09T15:59:23.5593878Z 090331e100a4: Pulling fs layer
2022-04-09T15:59:23.5594155Z e63eaf3f8f0b: Pulling fs layer
2022-04-09T15:59:23.5594426Z c4fe16e23f90: Pulling fs layer
2022-04-09T15:59:23.5594693Z 91d3d243767b: Pulling fs layer
2022-04-09T15:59:23.5594959Z c98035193f34: Pulling fs layer
2022-04-09T15:59:23.5595315Z f69ef071dd96: Pulling fs layer
2022-04-09T15:59:23.5595603Z 5e7ba50886d7: Pulling fs layer
2022-04-09T15:59:23.5595853Z 29fc474b8f91: Pulling fs layer
2022-04-09T15:59:23.5596123Z 3dfd4c269a2a: Pulling fs layer
2022-04-09T15:59:23.5596397Z 30ae9ae14dda: Pulling fs layer
2022-04-09T15:59:23.5596652Z d44715916fab: Pulling fs layer
2022-04-09T15:59:23.5596916Z f5cae6693134: Pulling fs layer
2022-04-09T15:59:23.5597184Z c926d2720c13: Pulling fs layer
2022-04-09T15:59:23.5597427Z 96b377565e50: Pulling fs layer
2022-04-09T15:59:23.5597687Z a3b453b4ea90: Pulling fs layer
2022-04-09T15:59:23.5597989Z 8604e6d0ab7f: Pulling fs layer
2022-04-09T15:59:23.5598280Z f0c728a45048: Pulling fs layer
2022-04-09T15:59:23.5598875Z 8ef11ba369cc: Pulling fs layer
2022-04-09T15:59:23.5599151Z 1fc12dbaaacc: Pulling fs layer
2022-04-09T15:59:23.5599406Z 2390a0348ee5: Pulling fs layer
2022-04-09T15:59:23.5599668Z 2277dc66d0c8: Pulling fs layer
2022-04-09T15:59:23.5599936Z fe46b3ad50b1: Pulling fs layer
2022-04-09T15:59:23.5600182Z 5e7ba50886d7: Waiting
2022-04-09T15:59:23.5600426Z 29fc474b8f91: Waiting
2022-04-09T15:59:23.5600664Z 3dfd4c269a2a: Waiting
2022-04-09T15:59:23.5600889Z 30ae9ae14dda: Waiting
2022-04-09T15:59:23.5601128Z d44715916fab: Waiting
2022-04-09T15:59:23.5601361Z f5cae6693134: Waiting
2022-04-09T15:59:23.5601580Z c926d2720c13: Waiting
2022-04-09T15:59:23.5602398Z 96b377565e50: Waiting
2022-04-09T15:59:23.5605951Z a3b453b4ea90: Waiting
2022-04-09T15:59:23.5606246Z 8604e6d0ab7f: Waiting
2022-04-09T15:59:23.5606487Z f0c728a45048: Waiting
2022-04-09T15:59:23.5606727Z 8ef11ba369cc: Waiting
2022-04-09T15:59:23.5606953Z 1fc12dbaaacc: Waiting
2022-04-09T15:59:23.5607193Z 2390a0348ee5: Waiting
2022-04-09T15:59:23.5607427Z 2277dc66d0c8: Waiting
2022-04-09T15:59:23.5607657Z fe46b3ad50b1: Waiting
2022-04-09T15:59:23.5607892Z 55f44be0aed3: Waiting
2022-04-09T15:59:23.5608126Z 213b80906b2b: Waiting
2022-04-09T15:59:23.5608342Z a31f74cd9d81: Waiting
2022-04-09T15:59:23.5608570Z 00e3434880dd: Waiting
2022-04-09T15:59:23.5608811Z 090331e100a4: Waiting
2022-04-09T15:59:23.5609028Z e63eaf3f8f0b: Waiting
2022-04-09T15:59:23.5609266Z c4fe16e23f90: Waiting
2022-04-09T15:59:23.5609499Z 91d3d243767b: Waiting
2022-04-09T15:59:23.5609726Z c98035193f34: Waiting
2022-04-09T15:59:23.5609940Z f69ef071dd96: Waiting
2022-04-09T15:59:23.6308069Z 4e9f2cdf4387: Verifying Checksum
2022-04-09T15:59:23.6312787Z 4e9f2cdf4387: Download complete
2022-04-09T15:59:23.6673153Z 80d1de1f04a6: Verifying Checksum
2022-04-09T15:59:23.6673575Z 80d1de1f04a6: Download complete
2022-04-09T15:59:23.6953328Z 55f44be0aed3: Verifying Checksum
2022-04-09T15:59:23.6957231Z 55f44be0aed3: Download complete
2022-04-09T15:59:23.7128592Z 65556e11f92f: Verifying Checksum
2022-04-09T15:59:23.7128975Z 65556e11f92f: Download complete
2022-04-09T15:59:23.7533379Z 213b80906b2b: Verifying Checksum
2022-04-09T15:59:23.7537633Z 213b80906b2b: Download complete
2022-04-09T15:59:23.8580680Z 00e3434880dd: Verifying Checksum
2022-04-09T15:59:23.8609044Z 00e3434880dd: Download complete
2022-04-09T15:59:23.8778569Z 090331e100a4: Verifying Checksum
2022-04-09T15:59:23.8779403Z 090331e100a4: Download complete
2022-04-09T15:59:23.9091557Z 4e9f2cdf4387: Pull complete
2022-04-09T15:59:23.9380494Z e63eaf3f8f0b: Verifying Checksum
2022-04-09T15:59:23.9384150Z e63eaf3f8f0b: Download complete
2022-04-09T15:59:24.6972984Z c4fe16e23f90: Verifying Checksum
2022-04-09T15:59:24.6973964Z c4fe16e23f90: Download complete
2022-04-09T15:59:24.9967758Z c98035193f34: Verifying Checksum
2022-04-09T15:59:24.9972368Z c98035193f34: Download complete
2022-04-09T15:59:25.2057958Z f69ef071dd96: Verifying Checksum
2022-04-09T15:59:25.2059581Z f69ef071dd96: Download complete
2022-04-09T15:59:25.3032567Z 91d3d243767b: Verifying Checksum
2022-04-09T15:59:25.3037288Z 91d3d243767b: Download complete
2022-04-09T15:59:25.3947662Z 29fc474b8f91: Verifying Checksum
2022-04-09T15:59:25.3966457Z 29fc474b8f91: Download complete
2022-04-09T15:59:25.4230466Z 5e7ba50886d7: Verifying Checksum
2022-04-09T15:59:25.4249666Z 5e7ba50886d7: Download complete
2022-04-09T15:59:25.4802861Z 3dfd4c269a2a: Download complete
2022-04-09T15:59:25.5187331Z 30ae9ae14dda: Download complete
2022-04-09T15:59:25.5957683Z d44715916fab: Verifying Checksum
2022-04-09T15:59:25.5963814Z d44715916fab: Download complete
2022-04-09T15:59:25.6466088Z f5cae6693134: Verifying Checksum
2022-04-09T15:59:25.6466877Z f5cae6693134: Download complete
2022-04-09T15:59:25.7907068Z 96b377565e50: Verifying Checksum
2022-04-09T15:59:25.7907956Z 96b377565e50: Download complete
2022-04-09T15:59:25.9954733Z a3b453b4ea90: Verifying Checksum
2022-04-09T15:59:25.9958580Z a3b453b4ea90: Download complete
2022-04-09T15:59:26.0291213Z c926d2720c13: Verifying Checksum
2022-04-09T15:59:26.0292231Z c926d2720c13: Download complete
2022-04-09T15:59:26.0880660Z f0c728a45048: Verifying Checksum
2022-04-09T15:59:26.0881379Z f0c728a45048: Download complete
2022-04-09T15:59:26.1155048Z 8604e6d0ab7f: Verifying Checksum
2022-04-09T15:59:26.1155616Z 8604e6d0ab7f: Download complete
2022-04-09T15:59:26.1376376Z 8ef11ba369cc: Verifying Checksum
2022-04-09T15:59:26.1377272Z 8ef11ba369cc: Download complete
2022-04-09T15:59:26.1648157Z 1fc12dbaaacc: Verifying Checksum
2022-04-09T15:59:26.1651878Z 1fc12dbaaacc: Download complete
2022-04-09T15:59:26.2670009Z 2277dc66d0c8: Verifying Checksum
2022-04-09T15:59:26.2670457Z 2277dc66d0c8: Download complete
2022-04-09T15:59:26.3576121Z 2390a0348ee5: Verifying Checksum
2022-04-09T15:59:26.3577010Z 2390a0348ee5: Download complete
2022-04-09T15:59:26.3588224Z fe46b3ad50b1: Verifying Checksum
2022-04-09T15:59:26.3592034Z fe46b3ad50b1: Download complete
2022-04-09T15:59:27.2002621Z a31f74cd9d81: Verifying Checksum
2022-04-09T15:59:27.2002991Z a31f74cd9d81: Download complete
2022-04-09T15:59:27.6496615Z 80d1de1f04a6: Pull complete
2022-04-09T15:59:28.6651256Z 65556e11f92f: Pull complete
2022-04-09T15:59:28.7279443Z 55f44be0aed3: Pull complete
2022-04-09T15:59:29.0080773Z 213b80906b2b: Pull complete
2022-04-09T15:59:41.5466335Z a31f74cd9d81: Pull complete
2022-04-09T15:59:41.7149636Z 00e3434880dd: Pull complete
2022-04-09T15:59:41.8091414Z 090331e100a4: Pull complete
2022-04-09T15:59:41.8806040Z e63eaf3f8f0b: Pull complete
2022-04-09T15:59:44.6517056Z c4fe16e23f90: Pull complete
2022-04-09T15:59:51.9039295Z 91d3d243767b: Pull complete
2022-04-09T15:59:52.2684301Z c98035193f34: Pull complete
2022-04-09T15:59:52.3428305Z f69ef071dd96: Pull complete
2022-04-09T15:59:52.9461121Z 5e7ba50886d7: Pull complete
2022-04-09T15:59:53.0170410Z 29fc474b8f91: Pull complete
2022-04-09T15:59:53.1687615Z 3dfd4c269a2a: Pull complete
2022-04-09T15:59:53.2834706Z 30ae9ae14dda: Pull complete
2022-04-09T15:59:53.6400119Z d44715916fab: Pull complete
2022-04-09T15:59:53.7783223Z f5cae6693134: Pull complete
2022-04-09T15:59:54.4643079Z c926d2720c13: Pull complete
2022-04-09T15:59:54.6117192Z 96b377565e50: Pull complete
2022-04-09T15:59:54.8038623Z a3b453b4ea90: Pull complete
2022-04-09T15:59:54.9957072Z 8604e6d0ab7f: Pull complete
2022-04-09T15:59:55.1416864Z f0c728a45048: Pull complete
2022-04-09T15:59:55.2085609Z 8ef11ba369cc: Pull complete
2022-04-09T15:59:55.3138651Z 1fc12dbaaacc: Pull complete
2022-04-09T15:59:57.3582860Z 2390a0348ee5: Pull complete
2022-04-09T15:59:57.4318534Z 2277dc66d0c8: Pull complete
2022-04-09T15:59:57.5128333Z fe46b3ad50b1: Pull complete
2022-04-09T15:59:57.5216025Z Digest: sha256:560b25f78d3a307bfd36f8ccfd579a70b9b7a74f2c95f46aee399eff552fc05e
2022-04-09T15:59:57.5238391Z Status: Downloaded newer image for megalinter/megalinter-documentation:v5
2022-04-09T15:59:57.5267355Z docker.io/megalinter/megalinter-documentation:v5
2022-04-09T15:59:57.5285404Z ##[endgroup]
2022-04-09T15:59:57.5835484Z ##[group]Run actions/checkout@v3
2022-04-09T15:59:57.5835771Z with:
2022-04-09T15:59:57.5836005Z   ref: bugfix/EDAP-000/cspell-json
2022-04-09T15:59:57.5836300Z   repository: massmutual/edap-workflows
2022-04-09T15:59:57.5836874Z   token: ***
2022-04-09T15:59:57.5837082Z   ssh-strict: true
2022-04-09T15:59:57.5837337Z   persist-credentials: true
2022-04-09T15:59:57.5837590Z   clean: true
2022-04-09T15:59:57.5837792Z   fetch-depth: 1
2022-04-09T15:59:57.5838005Z   lfs: false
2022-04-09T15:59:57.5838218Z   submodules: false
2022-04-09T15:59:57.5838419Z env:
2022-04-09T15:59:57.5838754Z   GITHUB_TOKEN: ***
2022-04-09T15:59:57.5838978Z   APPLY_FIXES: all
2022-04-09T15:59:57.5839226Z   APPLY_FIXES_EVENT: pull_request
2022-04-09T15:59:57.5839465Z   APPLY_FIXES_MODE: commit
2022-04-09T15:59:57.5839731Z   FILTER_REGEX_EXCLUDE: (docs/|report/)
2022-04-09T15:59:57.5840003Z   PRINT_ALL_FILES: true
2022-04-09T15:59:57.5840235Z   SHOW_ELAPSED_TIME: true
2022-04-09T15:59:57.5840529Z   PRINT_ALPACA: false
2022-04-09T15:59:57.5840760Z   LOG_LEVEL: DEBUG
2022-04-09T15:59:57.5840989Z   VALIDATE_ALL_CODEBASE: false
2022-04-09T15:59:57.5841426Z   GITHUB_STATUS_REPORTER: true
2022-04-09T15:59:57.5841681Z   EMAIL_REPORTER: false
2022-04-09T15:59:57.5841907Z   CONFIG_REPORTER: false
2022-04-09T15:59:57.5842149Z   TAP_REPORTER: false
2022-04-09T15:59:57.5842744Z   ENABLE: BASH,ENV,JSON,MARKDOWN,YAML,ACTION,DOCKERFILE,EDITORCONFIG,KUBERNETES,CREDENTIALS,COPYPASTE,GIT,SPELL
2022-04-09T15:59:57.5843487Z   DISABLE: ACTION
2022-04-09T15:59:57.5843773Z   ENABLE_LINTERS: 
2022-04-09T15:59:57.5844017Z   DISABLE_LINTERS: 
2022-04-09T15:59:57.5844325Z   YAML_PRETTIER_CONFIG_FILE: .github/linters/prettier.yaml
2022-04-09T15:59:57.5844708Z   YAML_YAMLLINT_CONFIG_FILE: .github/linters/yamllint.yaml
2022-04-09T15:59:57.5845050Z   COPYPASTE_JSCPD_DISABLE_ERRORS: true
2022-04-09T15:59:57.5845331Z   SPELL_CSPELL_DISABLE_ERRORS: true
2022-04-09T15:59:57.5845664Z   SPELL_CSPELL_CONFIG_FILE: .github/linters/cspell.json
2022-04-09T15:59:57.5845977Z   MEGALINTER_CONFIG: 
2022-04-09T15:59:57.5846226Z ##[endgroup]
2022-04-09T15:59:57.9187687Z Syncing repository: massmutual/edap-workflows
2022-04-09T15:59:57.9189670Z ##[group]Getting Git version info
2022-04-09T15:59:57.9190548Z Working directory is '/home/runner/work/edap-workflows/edap-workflows'
2022-04-09T15:59:57.9191184Z [command]/usr/bin/git version
2022-04-09T15:59:57.9226356Z git version 2.35.1
2022-04-09T15:59:57.9249706Z ##[endgroup]
2022-04-09T15:59:57.9256615Z Deleting the contents of '/home/runner/work/edap-workflows/edap-workflows'
2022-04-09T15:59:57.9263024Z ##[group]Initializing the repository
2022-04-09T15:59:57.9268522Z [command]/usr/bin/git init /home/runner/work/edap-workflows/edap-workflows
2022-04-09T15:59:57.9353024Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-04-09T15:59:57.9353857Z hint: is subject to change. To configure the initial branch name to use in all
2022-04-09T15:59:57.9354563Z hint: of your new repositories, which will suppress this warning, call:
2022-04-09T15:59:57.9355433Z hint: 
2022-04-09T15:59:57.9356024Z hint: 	git config --global init.defaultBranch <name>
2022-04-09T15:59:57.9356323Z hint: 
2022-04-09T15:59:57.9356757Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-04-09T15:59:57.9357307Z hint: 'development'. The just-created branch can be renamed via this command:
2022-04-09T15:59:57.9357634Z hint: 
2022-04-09T15:59:57.9357917Z hint: 	git branch -m <name>
2022-04-09T15:59:57.9371387Z Initialized empty Git repository in /home/runner/work/edap-workflows/edap-workflows/.git/
2022-04-09T15:59:57.9384940Z [command]/usr/bin/git remote add origin https://github.com/massmutual/edap-workflows
2022-04-09T15:59:57.9439466Z ##[endgroup]
2022-04-09T15:59:57.9441136Z ##[group]Disabling automatic garbage collection
2022-04-09T15:59:57.9447844Z [command]/usr/bin/git config --local gc.auto 0
2022-04-09T15:59:57.9487615Z ##[endgroup]
2022-04-09T15:59:57.9510864Z ##[group]Setting up auth
2022-04-09T15:59:57.9512052Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-04-09T15:59:57.9550338Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-04-09T15:59:58.0045301Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-04-09T15:59:58.0087602Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2022-04-09T15:59:58.0366185Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2022-04-09T15:59:58.0421764Z ##[endgroup]
2022-04-09T15:59:58.0422315Z ##[group]Fetching the repository
2022-04-09T15:59:58.0430900Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +refs/heads/bugfix/EDAP-000/cspell-json*:refs/remotes/origin/bugfix/EDAP-000/cspell-json* +refs/tags/bugfix/EDAP-000/cspell-json*:refs/tags/bugfix/EDAP-000/cspell-json*
2022-04-09T15:59:58.4155292Z remote: Enumerating objects: 67, done.        
2022-04-09T15:59:58.4156057Z remote: Counting objects:   1% (1/67)        
2022-04-09T15:59:58.4156691Z remote: Counting objects:   2% (2/67)        
2022-04-09T15:59:58.4158243Z remote: Counting objects:   4% (3/67)        
2022-04-09T15:59:58.4158727Z remote: Counting objects:   5% (4/67)        
2022-04-09T15:59:58.4159205Z remote: Counting objects:   7% (5/67)        
2022-04-09T15:59:58.4174101Z remote: Counting objects:   8% (6/67)        
2022-04-09T15:59:58.4174871Z remote: Counting objects:  10% (7/67)        
2022-04-09T15:59:58.4175403Z remote: Counting objects:  11% (8/67)        
2022-04-09T15:59:58.4175987Z remote: Counting objects:  13% (9/67)        
2022-04-09T15:59:58.4176501Z remote: Counting objects:  14% (10/67)        
2022-04-09T15:59:58.4177319Z remote: Counting objects:  16% (11/67)        
2022-04-09T15:59:58.4177882Z remote: Counting objects:  17% (12/67)        
2022-04-09T15:59:58.4178378Z remote: Counting objects:  19% (13/67)        
2022-04-09T15:59:58.4178865Z remote: Counting objects:  20% (14/67)        
2022-04-09T15:59:58.4179357Z remote: Counting objects:  22% (15/67)        
2022-04-09T15:59:58.4179842Z remote: Counting objects:  23% (16/67)        
2022-04-09T15:59:58.4180345Z remote: Counting objects:  25% (17/67)        
2022-04-09T15:59:58.4180831Z remote: Counting objects:  26% (18/67)        
2022-04-09T15:59:58.4181318Z remote: Counting objects:  28% (19/67)        
2022-04-09T15:59:58.4181789Z remote: Counting objects:  29% (20/67)        
2022-04-09T15:59:58.4182359Z remote: Counting objects:  31% (21/67)        
2022-04-09T15:59:58.4182848Z remote: Counting objects:  32% (22/67)        
2022-04-09T15:59:58.4183337Z remote: Counting objects:  34% (23/67)        
2022-04-09T15:59:58.4183810Z remote: Counting objects:  35% (24/67)        
2022-04-09T15:59:58.4184291Z remote: Counting objects:  37% (25/67)        
2022-04-09T15:59:58.4185150Z remote: Counting objects:  38% (26/67)        
2022-04-09T15:59:58.4185623Z remote: Counting objects:  40% (27/67)        
2022-04-09T15:59:58.4186106Z remote: Counting objects:  41% (28/67)        
2022-04-09T15:59:58.4186596Z remote: Counting objects:  43% (29/67)        
2022-04-09T15:59:58.4187704Z remote: Counting objects:  44% (30/67)        
2022-04-09T15:59:58.4188900Z remote: Counting objects:  46% (31/67)        
2022-04-09T15:59:58.4189390Z remote: Counting objects:  47% (32/67)        
2022-04-09T15:59:58.4189876Z remote: Counting objects:  49% (33/67)        
2022-04-09T15:59:58.4190349Z remote: Counting objects:  50% (34/67)        
2022-04-09T15:59:58.4190840Z remote: Counting objects:  52% (35/67)        
2022-04-09T15:59:58.4191323Z remote: Counting objects:  53% (36/67)        
2022-04-09T15:59:58.4192150Z remote: Counting objects:  55% (37/67)        
2022-04-09T15:59:58.4192642Z remote: Counting objects:  56% (38/67)        
2022-04-09T15:59:58.4193130Z remote: Counting objects:  58% (39/67)        
2022-04-09T15:59:58.4193614Z remote: Counting objects:  59% (40/67)        
2022-04-09T15:59:58.4194097Z remote: Counting objects:  61% (41/67)        
2022-04-09T15:59:58.4194583Z remote: Counting objects:  62% (42/67)        
2022-04-09T15:59:58.4195051Z remote: Counting objects:  64% (43/67)        
2022-04-09T15:59:58.4195542Z remote: Counting objects:  65% (44/67)        
2022-04-09T15:59:58.4196031Z remote: Counting objects:  67% (45/67)        
2022-04-09T15:59:58.4196513Z remote: Counting objects:  68% (46/67)        
2022-04-09T15:59:58.4196984Z remote: Counting objects:  70% (47/67)        
2022-04-09T15:59:58.4197462Z remote: Counting objects:  71% (48/67)        
2022-04-09T15:59:58.4197951Z remote: Counting objects:  73% (49/67)        
2022-04-09T15:59:58.4198416Z remote: Counting objects:  74% (50/67)        
2022-04-09T15:59:58.4199240Z remote: Counting objects:  76% (51/67)        
2022-04-09T15:59:58.4199727Z remote: Counting objects:  77% (52/67)        
2022-04-09T15:59:58.4200361Z remote: Counting objects:  79% (53/67)        
2022-04-09T15:59:58.4200848Z remote: Counting objects:  80% (54/67)        
2022-04-09T15:59:58.4201352Z remote: Counting objects:  82% (55/67)        
2022-04-09T15:59:58.4201824Z remote: Counting objects:  83% (56/67)        
2022-04-09T15:59:58.4202314Z remote: Counting objects:  85% (57/67)        
2022-04-09T15:59:58.4202806Z remote: Counting objects:  86% (58/67)        
2022-04-09T15:59:58.4203294Z remote: Counting objects:  88% (59/67)        
2022-04-09T15:59:58.4203769Z remote: Counting objects:  89% (60/67)        
2022-04-09T15:59:58.4204253Z remote: Counting objects:  91% (61/67)        
2022-04-09T15:59:58.4204736Z remote: Counting objects:  92% (62/67)        
2022-04-09T15:59:58.4205209Z remote: Counting objects:  94% (63/67)        
2022-04-09T15:59:58.4205693Z remote: Counting objects:  95% (64/67)        
2022-04-09T15:59:58.4206206Z remote: Counting objects:  97% (65/67)        
2022-04-09T15:59:58.4206691Z remote: Counting objects:  98% (66/67)        
2022-04-09T15:59:58.4207174Z remote: Counting objects: 100% (67/67)        
2022-04-09T15:59:58.4207687Z remote: Counting objects: 100% (67/67), done.        
2022-04-09T15:59:58.4208246Z remote: Compressing objects:   1% (1/61)        
2022-04-09T15:59:58.4208765Z remote: Compressing objects:   3% (2/61)        
2022-04-09T15:59:58.4209292Z remote: Compressing objects:   4% (3/61)        
2022-04-09T15:59:58.4210468Z remote: Compressing objects:   6% (4/61)        
2022-04-09T15:59:58.4210994Z remote: Compressing objects:   8% (5/61)        
2022-04-09T15:59:58.4211495Z remote: Compressing objects:   9% (6/61)        
2022-04-09T15:59:58.4212012Z remote: Compressing objects:  11% (7/61)        
2022-04-09T15:59:58.4212530Z remote: Compressing objects:  13% (8/61)        
2022-04-09T15:59:58.4213037Z remote: Compressing objects:  14% (9/61)        
2022-04-09T15:59:58.4213553Z remote: Compressing objects:  16% (10/61)        
2022-04-09T15:59:58.4214082Z remote: Compressing objects:  18% (11/61)        
2022-04-09T15:59:58.4214599Z remote: Compressing objects:  19% (12/61)        
2022-04-09T15:59:58.4215114Z remote: Compressing objects:  21% (13/61)        
2022-04-09T15:59:58.4215633Z remote: Compressing objects:  22% (14/61)        
2022-04-09T15:59:58.4216150Z remote: Compressing objects:  24% (15/61)        
2022-04-09T15:59:58.4216651Z remote: Compressing objects:  26% (16/61)        
2022-04-09T15:59:58.4217158Z remote: Compressing objects:  27% (17/61)        
2022-04-09T15:59:58.4217674Z remote: Compressing objects:  29% (18/61)        
2022-04-09T15:59:58.4218171Z remote: Compressing objects:  31% (19/61)        
2022-04-09T15:59:58.4218718Z remote: Compressing objects:  32% (20/61)        
2022-04-09T15:59:58.4219223Z remote: Compressing objects:  34% (21/61)        
2022-04-09T15:59:58.4219882Z remote: Compressing objects:  36% (22/61)        
2022-04-09T15:59:58.4220996Z remote: Compressing objects:  37% (23/61)        
2022-04-09T15:59:58.4221552Z remote: Compressing objects:  39% (24/61)        
2022-04-09T15:59:58.4222084Z remote: Compressing objects:  40% (25/61)        
2022-04-09T15:59:58.4222580Z remote: Compressing objects:  42% (26/61)        
2022-04-09T15:59:58.4223091Z remote: Compressing objects:  44% (27/61)        
2022-04-09T15:59:58.4223609Z remote: Compressing objects:  45% (28/61)        
2022-04-09T15:59:58.4224100Z remote: Compressing objects:  47% (29/61)        
2022-04-09T15:59:58.4227761Z remote: Compressing objects:  49% (30/61)        
2022-04-09T15:59:58.4228385Z remote: Compressing objects:  50% (31/61)        
2022-04-09T15:59:58.4228888Z remote: Compressing objects:  52% (32/61)        
2022-04-09T15:59:58.4229401Z remote: Compressing objects:  54% (33/61)        
2022-04-09T15:59:58.4229911Z remote: Compressing objects:  55% (34/61)        
2022-04-09T15:59:58.4230431Z remote: Compressing objects:  57% (35/61)        
2022-04-09T15:59:58.4230937Z remote: Compressing objects:  59% (36/61)        
2022-04-09T15:59:58.4231725Z remote: Compressing objects:  60% (37/61)        
2022-04-09T15:59:58.4232532Z remote: Compressing objects:  62% (38/61)        
2022-04-09T15:59:58.4233036Z remote: Compressing objects:  63% (39/61)        
2022-04-09T15:59:58.4233541Z remote: Compressing objects:  65% (40/61)        
2022-04-09T15:59:58.4234052Z remote: Compressing objects:  67% (41/61)        
2022-04-09T15:59:58.4234555Z remote: Compressing objects:  68% (42/61)        
2022-04-09T15:59:58.4235061Z remote: Compressing objects:  70% (43/61)        
2022-04-09T15:59:58.4235570Z remote: Compressing objects:  72% (44/61)        
2022-04-09T15:59:58.4236067Z remote: Compressing objects:  73% (45/61)        
2022-04-09T15:59:58.4236581Z remote: Compressing objects:  75% (46/61)        
2022-04-09T15:59:58.4237130Z remote: Compressing objects:  77% (47/61)        
2022-04-09T15:59:58.4237648Z remote: Compressing objects:  78% (48/61)        
2022-04-09T15:59:58.4238132Z remote: Compressing objects:  80% (49/61)        
2022-04-09T15:59:58.4238638Z remote: Compressing objects:  81% (50/61)        
2022-04-09T15:59:58.4239158Z remote: Compressing objects:  83% (51/61)        
2022-04-09T15:59:58.4239646Z remote: Compressing objects:  85% (52/61)        
2022-04-09T15:59:58.4240151Z remote: Compressing objects:  86% (53/61)        
2022-04-09T15:59:58.4240661Z remote: Compressing objects:  88% (54/61)        
2022-04-09T15:59:58.4241147Z remote: Compressing objects:  90% (55/61)        
2022-04-09T15:59:58.4241669Z remote: Compressing objects:  91% (56/61)        
2022-04-09T15:59:58.4242174Z remote: Compressing objects:  93% (57/61)        
2022-04-09T15:59:58.4243133Z remote: Compressing objects:  95% (58/61)        
2022-04-09T15:59:58.4243840Z remote: Compressing objects:  96% (59/61)        
2022-04-09T15:59:58.4244353Z remote: Compressing objects:  98% (60/61)        
2022-04-09T15:59:58.4244872Z remote: Compressing objects: 100% (61/61)        
2022-04-09T15:59:58.4245398Z remote: Compressing objects: 100% (61/61), done.        
2022-04-09T15:59:58.4299047Z remote: Total 67 (delta 14), reused 31 (delta 6), pack-reused 0        
2022-04-09T15:59:58.4515500Z From https://github.com/massmutual/edap-workflows
2022-04-09T15:59:58.4516287Z  * [new branch]      bugfix/EDAP-000/cspell-json -> origin/bugfix/EDAP-000/cspell-json
2022-04-09T15:59:58.4571875Z ##[endgroup]
2022-04-09T15:59:58.4572674Z ##[group]Determining the checkout info
2022-04-09T15:59:58.4573471Z [command]/usr/bin/git branch --list --remote origin/bugfix/EDAP-000/cspell-json
2022-04-09T15:59:58.4595947Z   origin/bugfix/EDAP-000/cspell-json
2022-04-09T15:59:58.4610802Z ##[endgroup]
2022-04-09T15:59:58.4612791Z ##[group]Checking out the ref
2022-04-09T15:59:58.4620792Z [command]/usr/bin/git checkout --progress --force -B bugfix/EDAP-000/cspell-json refs/remotes/origin/bugfix/EDAP-000/cspell-json
2022-04-09T15:59:58.4735613Z Switched to a new branch 'bugfix/EDAP-000/cspell-json'
2022-04-09T15:59:58.4736739Z branch 'bugfix/EDAP-000/cspell-json' set up to track 'origin/bugfix/EDAP-000/cspell-json'.
2022-04-09T15:59:58.4744257Z ##[endgroup]
2022-04-09T15:59:58.4815475Z [command]/usr/bin/git log -1 --format='%H'
2022-04-09T15:59:58.4867170Z '67f0d26f6ef94cc14385a13671b18997ebc9a071'
2022-04-09T15:59:58.5141841Z ##[group]Run mkdir -p report/.github/linters
2022-04-09T15:59:58.5142238Z �[36;1mmkdir -p report/.github/linters�[0m
2022-04-09T15:59:58.5204309Z shell: /usr/bin/bash -e {0}
2022-04-09T15:59:58.5204596Z env:
2022-04-09T15:59:58.5205154Z   GITHUB_TOKEN: ***
2022-04-09T15:59:58.5205414Z   APPLY_FIXES: all
2022-04-09T15:59:58.5205677Z   APPLY_FIXES_EVENT: pull_request
2022-04-09T15:59:58.5205964Z   APPLY_FIXES_MODE: commit
2022-04-09T15:59:58.5206260Z   FILTER_REGEX_EXCLUDE: (docs/|report/)
2022-04-09T15:59:58.5206533Z   PRINT_ALL_FILES: true
2022-04-09T15:59:58.5206797Z   SHOW_ELAPSED_TIME: true
2022-04-09T15:59:58.5207068Z   PRINT_ALPACA: false
2022-04-09T15:59:58.5207303Z   LOG_LEVEL: DEBUG
2022-04-09T15:59:58.5207564Z   VALIDATE_ALL_CODEBASE: false
2022-04-09T15:59:58.5207849Z   GITHUB_STATUS_REPORTER: true
2022-04-09T15:59:58.5208333Z   EMAIL_REPORTER: false
2022-04-09T15:59:58.5208597Z   CONFIG_REPORTER: false
2022-04-09T15:59:58.5208863Z   TAP_REPORTER: false
2022-04-09T15:59:58.5209541Z   ENABLE: BASH,ENV,JSON,MARKDOWN,YAML,ACTION,DOCKERFILE,EDITORCONFIG,KUBERNETES,CREDENTIALS,COPYPASTE,GIT,SPELL
2022-04-09T15:59:58.5210170Z   DISABLE: ACTION
2022-04-09T15:59:58.5210421Z   ENABLE_LINTERS: 
2022-04-09T15:59:58.5210650Z   DISABLE_LINTERS: 
2022-04-09T15:59:58.5210974Z   YAML_PRETTIER_CONFIG_FILE: .github/linters/prettier.yaml
2022-04-09T15:59:58.5211360Z   YAML_YAMLLINT_CONFIG_FILE: .github/linters/yamllint.yaml
2022-04-09T15:59:58.5211707Z   COPYPASTE_JSCPD_DISABLE_ERRORS: true
2022-04-09T15:59:58.5212004Z   SPELL_CSPELL_DISABLE_ERRORS: true
2022-04-09T15:59:58.5212342Z   SPELL_CSPELL_CONFIG_FILE: .github/linters/cspell.json
2022-04-09T15:59:58.5212656Z   MEGALINTER_CONFIG: 
2022-04-09T15:59:58.5212899Z ##[endgroup]
2022-04-09T15:59:58.5454324Z ##[group]Run megalinter/megalinter/flavors/documentation@v5
2022-04-09T15:59:58.5454669Z env:
2022-04-09T15:59:58.5455205Z   GITHUB_TOKEN: ***
2022-04-09T15:59:58.5455446Z   APPLY_FIXES: all
2022-04-09T15:59:58.5455727Z   APPLY_FIXES_EVENT: pull_request
2022-04-09T15:59:58.5456022Z   APPLY_FIXES_MODE: commit
2022-04-09T15:59:58.5456305Z   FILTER_REGEX_EXCLUDE: (docs/|report/)
2022-04-09T15:59:58.5456598Z   PRINT_ALL_FILES: true
2022-04-09T15:59:58.5456871Z   SHOW_ELAPSED_TIME: true
2022-04-09T15:59:58.5457128Z   PRINT_ALPACA: false
2022-04-09T15:59:58.5457381Z   LOG_LEVEL: DEBUG
2022-04-09T15:59:58.5457650Z   VALIDATE_ALL_CODEBASE: false
2022-04-09T15:59:58.5457925Z   GITHUB_STATUS_REPORTER: true
2022-04-09T15:59:58.5458204Z   EMAIL_REPORTER: false
2022-04-09T15:59:58.5458465Z   CONFIG_REPORTER: false
2022-04-09T15:59:58.5458736Z   TAP_REPORTER: false
2022-04-09T15:59:58.5459413Z   ENABLE: BASH,ENV,JSON,MARKDOWN,YAML,ACTION,DOCKERFILE,EDITORCONFIG,KUBERNETES,CREDENTIALS,COPYPASTE,GIT,SPELL
2022-04-09T15:59:58.5460046Z   DISABLE: ACTION
2022-04-09T15:59:58.5460317Z   ENABLE_LINTERS: 
2022-04-09T15:59:58.5460552Z   DISABLE_LINTERS: 
2022-04-09T15:59:58.5460881Z   YAML_PRETTIER_CONFIG_FILE: .github/linters/prettier.yaml
2022-04-09T15:59:58.5461270Z   YAML_YAMLLINT_CONFIG_FILE: .github/linters/yamllint.yaml
2022-04-09T15:59:58.5461621Z   COPYPASTE_JSCPD_DISABLE_ERRORS: true
2022-04-09T15:59:58.5461921Z   SPELL_CSPELL_DISABLE_ERRORS: true
2022-04-09T15:59:58.5462262Z   SPELL_CSPELL_CONFIG_FILE: .github/linters/cspell.json
2022-04-09T15:59:58.5462574Z   MEGALINTER_CONFIG: 
2022-04-09T15:59:58.5462813Z ##[endgroup]
2022-04-09T15:59:58.5704174Z ##[command]/usr/bin/docker run --name megalintermegalinterdocumentationv5_9d958e --label 2bcf09 --workdir /github/workspace --rm -e GITHUB_TOKEN -e APPLY_FIXES -e APPLY_FIXES_EVENT -e APPLY_FIXES_MODE -e FILTER_REGEX_EXCLUDE -e PRINT_ALL_FILES -e SHOW_ELAPSED_TIME -e PRINT_ALPACA -e LOG_LEVEL -e VALIDATE_ALL_CODEBASE -e GITHUB_STATUS_REPORTER -e EMAIL_REPORTER -e CONFIG_REPORTER -e TAP_REPORTER -e ENABLE -e DISABLE -e ENABLE_LINTERS -e DISABLE_LINTERS -e YAML_PRETTIER_CONFIG_FILE -e YAML_YAMLLINT_CONFIG_FILE -e COPYPASTE_JSCPD_DISABLE_ERRORS -e SPELL_CSPELL_DISABLE_ERRORS -e SPELL_CSPELL_CONFIG_FILE -e MEGALINTER_CONFIG -e HOME -e GITHUB_JOB -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_REPOSITORY_OWNER -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_RETENTION_DAYS -e GITHUB_RUN_ATTEMPT -e GITHUB_ACTOR -e GITHUB_WORKFLOW -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GITHUB_EVENT_NAME -e GITHUB_SERVER_URL -e GITHUB_API_URL -e GITHUB_GRAPHQL_URL -e GITHUB_REF_NAME -e GITHUB_REF_PROTECTED -e GITHUB_REF_TYPE -e GITHUB_WORKSPACE -e GITHUB_ACTION -e GITHUB_EVENT_PATH -e GITHUB_ACTION_REPOSITORY -e GITHUB_ACTION_REF -e GITHUB_PATH -e GITHUB_ENV -e GITHUB_STEP_SUMMARY -e RUNNER_OS -e RUNNER_ARCH -e RUNNER_NAME -e RUNNER_TOOL_CACHE -e RUNNER_TEMP -e RUNNER_WORKSPACE -e ACTIONS_RUNTIME_URL -e ACTIONS_RUNTIME_TOKEN -e ACTIONS_CACHE_URL -e GITHUB_ACTIONS=true -e CI=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/_temp/_runner_file_commands":"/github/file_commands" -v "/home/runner/work/edap-workflows/edap-workflows":"/github/workspace" megalinter/megalinter-documentation:v5  "-v" "/var/run/docker.sock:/var/run/docker.sock:rw"
2022-04-09T15:59:58.9567621Z GITHUB_WORKSPACE=/github/workspace
2022-04-09T15:59:58.9569306Z ENABLE=BASH,ENV,JSON,MARKDOWN,YAML,ACTION,DOCKERFILE,EDITORCONFIG,KUBERNETES,CREDENTIALS,COPYPASTE,GIT,SPELL
2022-04-09T15:59:58.9570374Z LOG_LEVEL=DEBUG
2022-04-09T15:59:58.9571796Z HOSTNAME=d948cf1a8b0d
2022-04-09T15:59:58.9572160Z PYTHON_VERSION=3.9.7
2022-04-09T15:59:58.9572962Z GITHUB_PATH=/github/file_commands/add_path_1dac8aff-d7cf-4070-a2db-9ebb9c9bfa13
2022-04-09T15:59:58.9573410Z GITHUB_ACTION=ml
2022-04-09T15:59:58.9573858Z NODE_OPTIONS=--max-old-space-size=8192
2022-04-09T15:59:58.9574550Z APPLY_FIXES_EVENT=pull_request
2022-04-09T15:59:58.9574933Z GITHUB_RUN_NUMBER=153
2022-04-09T15:59:58.9575300Z RUNNER_NAME=GitHub Actions 7
2022-04-09T15:59:58.9576433Z SPELL_CSPELL_CONFIG_FILE=.github/linters/cspell.json
2022-04-09T15:59:58.9576805Z APPLY_FIXES=all
2022-04-09T15:59:58.9577145Z GITHUB_REF_TYPE=branch
2022-04-09T15:59:58.9577800Z ACTIONS_CACHE_URL=https://artifactcache.actions.githubusercontent.com/3dDVH7obVgCM77gchQyBx7Ef3TC9Tdw7ZTbUqfaNfDfltmBcVC/
2022-04-09T15:59:58.9578488Z YAML_PRETTIER_CONFIG_FILE=.github/linters/prettier.yaml
2022-04-09T15:59:58.9578895Z SPELL_CSPELL_DISABLE_ERRORS=true
2022-04-09T15:59:58.9580214Z ***
2022-04-09T15:59:58.9580795Z SHOW_ELAPSED_TIME=true
2022-04-09T15:59:58.9581132Z GITHUB_ACTIONS=true
2022-04-09T15:59:58.9581490Z VALIDATE_ALL_CODEBASE=false
2022-04-09T15:59:58.9581993Z BUILD_DATE=2022-03-20T11:07:22Z
2022-04-09T15:59:58.9586023Z PYTHON_SETUPTOOLS_VERSION=57.5.0
2022-04-09T15:59:58.9586456Z PRINT_ALPACA=false
2022-04-09T15:59:58.9586851Z GITHUB_SHA=54b13b61e7c2283d825551f24dd53bb102d3152e
2022-04-09T15:59:58.9587306Z YAML_YAMLLINT_CONFIG_FILE=.github/linters/yamllint.yaml
2022-04-09T15:59:58.9587709Z GITHUB_REF=refs/pull/63/merge
2022-04-09T15:59:58.9588052Z RUNNER_OS=Linux
2022-04-09T15:59:58.9588390Z GITHUB_REF_PROTECTED=false
2022-04-09T15:59:58.9588731Z HOME=/github/home
2022-04-09T15:59:58.9589097Z GITHUB_API_URL=https://api.github.com
2022-04-09T15:59:58.9589579Z LANG=C.UTF-8
2022-04-09T15:59:58.9590190Z GITHUB_TOKEN=***
2022-04-09T15:59:58.9590527Z TAP_REPORTER=false
2022-04-09T15:59:58.9590844Z RUNNER_ARCH=X64
2022-04-09T15:59:58.9591292Z RUNNER_TEMP=/home/runner/work/_temp
2022-04-09T15:59:58.9592353Z ACTIONS_RUNTIME_URL=https://pipelines.actions.githubusercontent.com/3dDVH7obVgCM77gchQyBx7Ef3TC9Tdw7ZTbUqfaNfDfltmBcVC/
2022-04-09T15:59:58.9593885Z DISABLE=ACTION
2022-04-09T15:59:58.9594160Z GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568
2022-04-09T15:59:58.9594685Z GITHUB_ENV=/github/file_commands/set_env_1dac8aff-d7cf-4070-a2db-9ebb9c9bfa13
2022-04-09T15:59:58.9595065Z GITHUB_EVENT_PATH=/github/workflow/event.json
2022-04-09T15:59:58.9595534Z GITHUB_EVENT_NAME=pull_request
2022-04-09T15:59:58.9595806Z GITHUB_RUN_ID=2141166659
2022-04-09T15:59:58.9596072Z GOROOT=/usr/lib/go
2022-04-09T15:59:58.9596689Z GITHUB_STEP_SUMMARY=/github/file_commands/step_summary_1dac8aff-d7cf-4070-a2db-9ebb9c9bfa13
2022-04-09T15:59:58.9597116Z GITHUB_ACTOR=Andrew-Sheridan
2022-04-09T15:59:58.9597368Z GITHUB_RUN_ATTEMPT=1
2022-04-09T15:59:58.9597829Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql
2022-04-09T15:59:58.9598175Z PYTHONPATH=:/github/workspace
2022-04-09T15:59:58.9659043Z ACTIONS_RUNTIME_TOKEN=***
2022-04-09T15:59:58.9659410Z GITHUB_SERVER_URL=https://github.com
2022-04-09T15:59:58.9659677Z SHLVL=1
2022-04-09T15:59:58.9659906Z ENABLE_LINTERS=
2022-04-09T15:59:58.9660186Z RUNNER_TOOL_CACHE=/opt/hostedtoolcache
2022-04-09T15:59:58.9660486Z FILTER_REGEX_EXCLUDE=(docs/|report/)
2022-04-09T15:59:58.9660780Z PYTHON_PIP_VERSION=21.2.4
2022-04-09T15:59:58.9661066Z GITHUB_REF_NAME=63/merge
2022-04-09T15:59:58.9661426Z BUILD_REVISION=73bc6eaf7
2022-04-09T15:59:58.9661919Z GITHUB_JOB=megalinter
2022-04-09T15:59:58.9662161Z EMAIL_REPORTER=false
2022-04-09T15:59:58.9662506Z PYTHON_GET_PIP_SHA256=c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309
2022-04-09T15:59:58.9662850Z GO111MODULE=on
2022-04-09T15:59:58.9663111Z COPYPASTE_JSCPD_DISABLE_ERRORS=true
2022-04-09T15:59:58.9671616Z GITHUB_REPOSITORY=massmutual/edap-workflows
2022-04-09T15:59:58.9671931Z GITHUB_RETENTION_DAYS=90
2022-04-09T15:59:58.9672186Z CONFIG_REPORTER=false
2022-04-09T15:59:58.9672776Z PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py
2022-04-09T15:59:58.9673283Z RUNNER_WORKSPACE=/home/runner/work/edap-workflows
2022-04-09T15:59:58.9673591Z MEGALINTER_FLAVOR=documentation
2022-04-09T15:59:58.9673899Z GITHUB_ACTION_REPOSITORY=megalinter/megalinter
2022-04-09T15:59:58.9674501Z PATH=/node_modules/.bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/go/bin:/go/bin
2022-04-09T15:59:58.9674873Z GITHUB_BASE_REF=main
2022-04-09T15:59:58.9675108Z DISABLE_LINTERS=
2022-04-09T15:59:58.9675313Z CI=true
2022-04-09T15:59:58.9675551Z GITHUB_REPOSITORY_OWNER=massmutual
2022-04-09T15:59:58.9675811Z BUILD_VERSION=v5
2022-04-09T15:59:58.9676144Z GITHUB_HEAD_REF=bugfix/EDAP-000/cspell-json
2022-04-09T15:59:58.9676417Z MEGALINTER_CONFIG=
2022-04-09T15:59:58.9676653Z GITHUB_ACTION_REF=v5
2022-04-09T15:59:58.9676885Z GITHUB_STATUS_REPORTER=true
2022-04-09T15:59:58.9677166Z GITHUB_WORKFLOW=Lint Workflows (local)
2022-04-09T15:59:58.9677419Z GOPATH=/go
2022-04-09T15:59:58.9677814Z APPLY_FIXES_MODE=commit
2022-04-09T15:59:58.9678076Z PRINT_ALL_FILES=true
2022-04-09T15:59:58.9678326Z _=/bin/printenv
2022-04-09T15:59:59.2420326Z [config] Environment variables only (no config file found in /github/workspace)
2022-04-09T15:59:59.2421874Z ----------------------------------------------------------------------------------------------------
2022-04-09T15:59:59.2422669Z -------------------------------------------- MegaLinter --------------------------------------------
2022-04-09T15:59:59.2423548Z ----------------------------------------------------------------------------------------------------
2022-04-09T15:59:59.2424326Z  - Image Creation Date: 2022-03-20T11:07:22Z
2022-04-09T15:59:59.2427342Z  - Image Revision: 73bc6eaf7
2022-04-09T15:59:59.2427787Z  - Image Version: v5
2022-04-09T15:59:59.2428465Z ----------------------------------------------------------------------------------------------------
2022-04-09T15:59:59.2529519Z The MegaLinter documentation can be found at:
2022-04-09T15:59:59.2530545Z  - https://megalinter.github.io
2022-04-09T15:59:59.2531145Z ----------------------------------------------------------------------------------------------------
2022-04-09T15:59:59.2531684Z GITHUB_REPOSITORY: massmutual/edap-workflows
2022-04-09T15:59:59.2531996Z GITHUB_REF: refs/pull/63/merge
2022-04-09T15:59:59.2532282Z GITHUB_RUN_ID: 2141166659
2022-04-09T15:59:59.2532445Z 
2022-04-09T15:59:59.2532843Z ACTIONS_CACHE_URL=https://artifactcache.actions.githubusercontent.com/3dDVH7obVgCM77gchQyBx7Ef3TC9Tdw7ZTbUqfaNfDfltmBcVC/
2022-04-09T15:59:59.2602767Z ACTIONS_RUNTIME_TOKEN=***
2022-04-09T15:59:59.2603439Z ACTIONS_RUNTIME_URL=https://pipelines.actions.githubusercontent.com/3dDVH7obVgCM77gchQyBx7Ef3TC9Tdw7ZTbUqfaNfDfltmBcVC/
2022-04-09T15:59:59.2603968Z APPLY_FIXES=all
2022-04-09T15:59:59.2604241Z APPLY_FIXES_EVENT=pull_request
2022-04-09T15:59:59.2604510Z APPLY_FIXES_MODE=commit
2022-04-09T15:59:59.2604989Z BUILD_DATE=2022-03-20T11:07:22Z
2022-04-09T15:59:59.2605263Z BUILD_REVISION=73bc6eaf7
2022-04-09T15:59:59.2605506Z BUILD_VERSION=v5
2022-04-09T15:59:59.2605739Z CI=true
2022-04-09T15:59:59.2605980Z CONFIG_REPORTER=false
2022-04-09T15:59:59.2606252Z COPYPASTE_JSCPD_DISABLE_ERRORS=true
2022-04-09T15:59:59.2606531Z DISABLE=ACTION
2022-04-09T15:59:59.2606769Z DISABLE_LINTERS=
2022-04-09T15:59:59.2607002Z EMAIL_REPORTER=false
2022-04-09T15:59:59.2607669Z ENABLE=BASH,ENV,JSON,MARKDOWN,YAML,ACTION,DOCKERFILE,EDITORCONFIG,KUBERNETES,CREDENTIALS,COPYPASTE,GIT,SPELL
2022-04-09T15:59:59.2608629Z ENABLE_LINTERS=
2022-04-09T15:59:59.2608886Z FILTER_REGEX_EXCLUDE=(docs/|report/)
2022-04-09T15:59:59.2609161Z GITHUB_ACTION=ml
2022-04-09T15:59:59.2609411Z GITHUB_ACTIONS=true
2022-04-09T15:59:59.2609651Z GITHUB_ACTION_REF=v5
2022-04-09T15:59:59.2609959Z GITHUB_ACTION_REPOSITORY=megalinter/megalinter
2022-04-09T15:59:59.2610351Z GITHUB_ACTOR=Andrew-Sheridan
2022-04-09T15:59:59.2610656Z GITHUB_API_URL=https://api.github.com
2022-04-09T15:59:59.2610953Z GITHUB_BASE_REF=main
2022-04-09T15:59:59.2611437Z GITHUB_ENV=/github/file_commands/set_env_1dac8aff-d7cf-4070-a2db-9ebb9c9bfa13
2022-04-09T15:59:59.2611804Z GITHUB_EVENT_NAME=pull_request
2022-04-09T15:59:59.2612103Z GITHUB_EVENT_PATH=/github/workflow/event.json
2022-04-09T15:59:59.2612463Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql
2022-04-09T15:59:59.2612903Z GITHUB_HEAD_REF=bugfix/EDAP-000/cspell-json
2022-04-09T15:59:59.2613278Z GITHUB_JOB=megalinter
2022-04-09T15:59:59.2613770Z GITHUB_PATH=/github/file_commands/add_path_1dac8aff-d7cf-4070-a2db-9ebb9c9bfa13
2022-04-09T15:59:59.2614149Z GITHUB_REF=refs/pull/63/merge
2022-04-09T15:59:59.2614409Z GITHUB_REF_NAME=63/merge
2022-04-09T15:59:59.2615076Z GITHUB_REF_PROTECTED=false
2022-04-09T15:59:59.2615352Z GITHUB_REF_TYPE=branch
2022-04-09T15:59:59.2615739Z GITHUB_REPOSITORY=massmutual/edap-workflows
2022-04-09T15:59:59.2616062Z GITHUB_REPOSITORY_OWNER=massmutual
2022-04-09T15:59:59.2616351Z GITHUB_RETENTION_DAYS=90
2022-04-09T15:59:59.2616599Z GITHUB_RUN_ATTEMPT=1
2022-04-09T15:59:59.2616855Z GITHUB_RUN_ID=2141166659
2022-04-09T15:59:59.2617108Z GITHUB_RUN_NUMBER=153
2022-04-09T15:59:59.2617391Z GITHUB_SERVER_URL=https://github.com
2022-04-09T15:59:59.2617728Z GITHUB_SHA=54b13b61e7c2283d825551f24dd53bb102d3152e
2022-04-09T15:59:59.2618036Z GITHUB_STATUS_REPORTER=true
2022-04-09T15:59:59.2618564Z GITHUB_STEP_SUMMARY=/github/file_commands/step_summary_1dac8aff-d7cf-4070-a2db-9ebb9c9bfa13
2022-04-09T15:59:59.2626687Z GITHUB_TOKEN=***
2022-04-09T15:59:59.2627115Z GITHUB_WORKFLOW=Lint Workflows (local)
2022-04-09T15:59:59.2627448Z GITHUB_WORKSPACE=/github/workspace
2022-04-09T15:59:59.2628880Z GO111MODULE=on
2022-04-09T15:59:59.2629287Z GOPATH=/go
2022-04-09T15:59:59.2629521Z GOROOT=/usr/lib/go
2022-04-09T15:59:59.2629867Z GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568
2022-04-09T15:59:59.2630169Z HOME=/github/home
2022-04-09T15:59:59.2630416Z HOSTNAME=d948cf1a8b0d
2022-04-09T15:59:59.2630818Z LANG=C.UTF-8
2022-04-09T15:59:59.2631055Z LOG_LEVEL=DEBUG
2022-04-09T15:59:59.2631302Z MEGALINTER_CONFIG=
2022-04-09T15:59:59.2631565Z MEGALINTER_FLAVOR=documentation
2022-04-09T15:59:59.2631969Z NODE_OPTIONS=--max-old-space-size=8192
2022-04-09T15:59:59.2632421Z PATH=/node_modules/.bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/go/bin:/go/bin
2022-04-09T15:59:59.2633165Z PRINT_ALL_FILES=true
2022-04-09T15:59:59.2633444Z PRINT_ALPACA=false
2022-04-09T15:59:59.2633790Z ***
2022-04-09T15:59:59.2634039Z PYTHONPATH=:/github/workspace
2022-04-09T15:59:59.2634436Z PYTHON_GET_PIP_SHA256=c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309
2022-04-09T15:59:59.2635189Z PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py
2022-04-09T15:59:59.2635624Z PYTHON_PIP_VERSION=21.2.4
2022-04-09T15:59:59.2635899Z PYTHON_SETUPTOOLS_VERSION=57.5.0
2022-04-09T15:59:59.2636178Z PYTHON_VERSION=3.9.7
2022-04-09T15:59:59.2636423Z RUNNER_ARCH=X64
2022-04-09T15:59:59.2636664Z RUNNER_NAME=GitHub Actions 7
2022-04-09T15:59:59.2636927Z RUNNER_OS=Linux
2022-04-09T15:59:59.2637194Z RUNNER_TEMP=/home/runner/work/_temp
2022-04-09T15:59:59.2637491Z RUNNER_TOOL_CACHE=/opt/hostedtoolcache
2022-04-09T15:59:59.2637914Z RUNNER_WORKSPACE=/home/runner/work/edap-workflows
2022-04-09T15:59:59.2638203Z SHLVL=1
2022-04-09T15:59:59.2638427Z SHOW_ELAPSED_TIME=true
2022-04-09T15:59:59.2638742Z SPELL_CSPELL_CONFIG_FILE=.github/linters/cspell.json
2022-04-09T15:59:59.2639072Z SPELL_CSPELL_DISABLE_ERRORS=true
2022-04-09T15:59:59.2639583Z TAP_REPORTER=false
2022-04-09T15:59:59.2639849Z VALIDATE_ALL_CODEBASE=false
2022-04-09T15:59:59.2640182Z YAML_PRETTIER_CONFIG_FILE=.github/linters/prettier.yaml
2022-04-09T15:59:59.2640561Z YAML_YAMLLINT_CONFIG_FILE=.github/linters/yamllint.yaml
2022-04-09T15:59:59.2640861Z _=/usr/local/bin/python
2022-04-09T15:59:59.2641419Z ----------------------------------------------------------------------------------------------------
2022-04-09T15:59:59.2641725Z 
2022-04-09T15:59:59.2641887Z [Pre] No commands declared in user configuration
2022-04-09T16:00:00.1766076Z [Activation] KUBERNETES_KUBEVAL has been set inactive, as subdirectory has not been found: kubernetes
2022-04-09T16:00:00.1769551Z [Activation] KUBERNETES_KUBECONFORM has been set inactive, as subdirectory has not been found: kubernetes
2022-04-09T16:00:00.4570369Z Skipped linters: ACTION_ACTIONLINT, ANSIBLE_ANSIBLE_LINT, ARM_ARM_TTK, CLOJURE_CLJ_KONDO, CLOUDFORMATION_CFN_LINT, COFFEE_COFFEELINT, CPP_CPPLINT, CSHARP_DOTNET_FORMAT, CSS_SCSS_LINT, CSS_STYLELINT, C_CPPLINT, DART_DARTANALYZER, GHERKIN_GHERKIN_LINT, GO_GOLANGCI_LINT, GO_REVIVE, GRAPHQL_GRAPHQL_SCHEMA_LINTER, GROOVY_NPM_GROOVY_LINT, HTML_HTMLHINT, JAVASCRIPT_ES, JAVASCRIPT_PRETTIER, JAVASCRIPT_STANDARD, JAVA_CHECKSTYLE, JSX_ESLINT, KOTLIN_KTLINT, KUBERNETES_KUBECONFORM, KUBERNETES_KUBEVAL, LATEX_CHKTEX, LUA_LUACHECK, MARKDOWN_REMARK_LINT, OPENAPI_SPECTRAL, PERL_PERLCRITIC, PHP_BUILTIN, PHP_PHPCS, PHP_PHPLINT, PHP_PHPSTAN, PHP_PSALM, POWERSHELL_POWERSHELL, PROTOBUF_PROTOLINT, PUPPET_PUPPET_LINT, PYTHON_BANDIT, PYTHON_BLACK, PYTHON_FLAKE8, PYTHON_ISORT, PYTHON_MYPY, PYTHON_PYLINT, RAKU_RAKU, RST_RSTCHECK, RST_RSTFMT, RST_RST_LINT, RUBY_RUBOCOP, RUST_CLIPPY, R_LINTR, SALESFORCE_SFDX_SCANNER_APEX, SALESFORCE_SFDX_SCANNER_AURA, SALESFORCE_SFDX_SCANNER_LWC, SCALA_SCALAFIX, SNAKEMAKE_LINT, SNAKEMAKE_SNAKEFMT, SQL_SQLFLUFF, SQL_SQL_LINT, SQL_TSQLLINT, SWIFT_SWIFTLINT, TEKTON_TEKTON_LINT, TERRAFORM_CHECKOV, TERRAFORM_KICS, TERRAFORM_TERRAFORM_FMT, TERRAFORM_TERRAGRUNT, TERRAFORM_TERRASCAN, TERRAFORM_TFLINT, TSX_ESLINT, TYPESCRIPT_ES, TYPESCRIPT_PRETTIER, TYPESCRIPT_STANDARD, VBDOTNET_DOTNET_FORMAT, XML_XMLLINT
2022-04-09T16:00:00.4573975Z Listing updated files in [/github/workspace] using git diff.
2022-04-09T16:00:00.4582778Z Popen(['git', 'fetch', 'origin', 'HEAD:refs/remotes/origin/HEAD'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:01.0474617Z Popen(['git', 'diff', '--name-only', 'origin/HEAD'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:01.0546660Z Modified files:
2022-04-09T16:00:01.0546992Z .github/linters/cspell.json
2022-04-09T16:00:01.0547277Z .github/linters/cspell.yaml
2022-04-09T16:00:01.0547839Z .github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0548314Z .github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0548800Z .github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0549234Z .github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0549581Z All found files before filtering:
2022-04-09T16:00:01.0549985Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0550456Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0550991Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0551536Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0552139Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0552695Z - File extensions: *, .bash, .dash, .env, .json, .json5, .jsonc, .ksh, .md, .sh, .yaml, .yml
2022-04-09T16:00:01.0553120Z - File names (regex): Dockerfile
2022-04-09T16:00:01.0553477Z - Excluding regex: (docs/|report/)
2022-04-09T16:00:01.0562421Z Popen(['git', 'ls-files', '--exclude-standard', '--ignored', '--others', '--cached'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:01.0603436Z - Excluding .gitignored files [1]: /github/workspace/report/mega-linter.log
2022-04-09T16:00:01.0641022Z Kept [5] files on [5] found files
2022-04-09T16:00:01.0641366Z Kept files before applying linter filters:
2022-04-09T16:00:01.0666969Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0667471Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0668039Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0668587Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0669099Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0670391Z [Filters] {'name': 'BASH_EXEC', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.sh', '.bash', '.dash', '.ksh'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0671100Z BASH_EXEC linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0672174Z [Filters] {'name': 'BASH_SHELLCHECK', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.sh', '.bash', '.dash', '.ksh'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0672867Z BASH_SHELLCHECK linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0673895Z [Filters] {'name': 'BASH_SHFMT', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.sh', '.bash', '.dash', '.ksh'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0674580Z BASH_SHFMT linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0675590Z [Filters] {'name': 'COPYPASTE_JSCPD', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': True, 'lint_all_other_linters_files': False, 'file_extensions': [], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0676275Z COPYPASTE_JSCPD linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0677303Z [Filters] {'name': 'CREDENTIALS_SECRETLINT', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': True, 'lint_all_other_linters_files': False, 'file_extensions': [], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0677986Z CREDENTIALS_SECRETLINT linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0679064Z [Filters] {'name': 'DOCKERFILE_DOCKERFILELINT', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': [], 'file_names_regex': ['Dockerfile'], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0679803Z DOCKERFILE_DOCKERFILELINT linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0680865Z [Filters] {'name': 'DOCKERFILE_HADOLINT', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': [], 'file_names_regex': ['Dockerfile'], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0681627Z DOCKERFILE_HADOLINT linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0682594Z [Filters] {'name': 'EDITORCONFIG_EDITORCONFIG_CHECKER', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['*'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0683557Z EDITORCONFIG_EDITORCONFIG_CHECKER linter kept 5 files after applying linter filters:
2022-04-09T16:00:01.0684057Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0684539Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0685076Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0685621Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0686174Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0687192Z [Filters] {'name': 'ENV_DOTENV_LINTER', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.env'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0687926Z ENV_DOTENV_LINTER linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0688929Z [Filters] {'name': 'GIT_GIT_DIFF', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': True, 'lint_all_other_linters_files': False, 'file_extensions': [], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0689587Z GIT_GIT_DIFF linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0690586Z [Filters] {'name': 'JSON_JSONLINT', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.json'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0691243Z JSON_JSONLINT linter kept 1 files after applying linter filters:
2022-04-09T16:00:01.0691693Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0692759Z [Filters] {'name': 'JSON_ESLINT_PLUGIN_JSONC', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.json', '.json5', '.jsonc'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0693487Z JSON_ESLINT_PLUGIN_JSONC linter kept 1 files after applying linter filters:
2022-04-09T16:00:01.0693939Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0696014Z [Filters] {'name': 'JSON_V8R', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.json'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0696750Z JSON_V8R linter kept 1 files after applying linter filters:
2022-04-09T16:00:01.0697314Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0698337Z [Filters] {'name': 'JSON_PRETTIER', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.json'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0699041Z JSON_PRETTIER linter kept 1 files after applying linter filters:
2022-04-09T16:00:01.0699505Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0700526Z [Filters] {'name': 'MARKDOWN_MARKDOWNLINT', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.md'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0701220Z MARKDOWN_MARKDOWNLINT linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0702276Z [Filters] {'name': 'MARKDOWN_MARKDOWN_LINK_CHECK', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.md'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0703242Z MARKDOWN_MARKDOWN_LINK_CHECK linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0704340Z [Filters] {'name': 'MARKDOWN_MARKDOWN_TABLE_FORMATTER', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.md'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0706520Z MARKDOWN_MARKDOWN_TABLE_FORMATTER linter kept 0 files after applying linter filters:
2022-04-09T16:00:01.0707698Z [Filters] {'name': 'SPELL_MISSPELL', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': True, 'file_extensions': [], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0708395Z SPELL_MISSPELL linter kept 5 files after applying linter filters:
2022-04-09T16:00:01.0708865Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0709359Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0709900Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0710448Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0710984Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0712008Z [Filters] {'name': 'SPELL_CSPELL', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': True, 'file_extensions': [], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0712689Z SPELL_CSPELL linter kept 5 files after applying linter filters:
2022-04-09T16:00:01.0713148Z - /github/workspace/.github/linters/cspell.json
2022-04-09T16:00:01.0713637Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0714186Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0714740Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0715276Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0716337Z [Filters] {'name': 'YAML_PRETTIER', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.yml', '.yaml'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0717015Z YAML_PRETTIER linter kept 4 files after applying linter filters:
2022-04-09T16:00:01.0717530Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0718090Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0718635Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0719147Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0720208Z [Filters] {'name': 'YAML_YAMLLINT', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.yml', '.yaml'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0720914Z YAML_YAMLLINT linter kept 4 files after applying linter filters:
2022-04-09T16:00:01.0721426Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0721960Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0722512Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0723033Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0724178Z [Filters] {'name': 'YAML_V8R', 'filter_regex_include': None, 'filter_regex_exclude': None, 'files_sub_directory': None, 'lint_all_files': False, 'lint_all_other_linters_files': False, 'file_extensions': ['.yml', '.yaml'], 'file_names_regex': [], 'file_names_not_ends_with': [], 'file_contains_regex': []}
2022-04-09T16:00:01.0724843Z YAML_V8R linter kept 4 files after applying linter filters:
2022-04-09T16:00:01.0725342Z - /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:01.0725898Z - /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:01.0726426Z - /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:01.0726955Z - /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:01.0727205Z 
2022-04-09T16:00:01.0727634Z +----MATCHING LINTERS-----------------+---------------------+----------------+------------+
2022-04-09T16:00:01.0728191Z | Descriptor   | Linter               | Criteria            | Matching files | Format/Fix |
2022-04-09T16:00:01.0728762Z +--------------+----------------------+---------------------+----------------+------------+
2022-04-09T16:00:01.0729207Z | COPYPASTE    | jscpd                |                     | project        | no         |
2022-04-09T16:00:01.0729605Z | CREDENTIALS  | secretlint           |                     | project        | no         |
2022-04-09T16:00:01.0730120Z | EDITORCONFIG | editorconfig-checker | *                   | 5              | no         |
2022-04-09T16:00:01.0730505Z | GIT          | git_diff             |                     | project        | no         |
2022-04-09T16:00:01.0730868Z | JSON         | jsonlint             | .json               | 1              | no         |
2022-04-09T16:00:01.0731391Z | JSON         | eslint-plugin-jsonc  | .json|.json5|.jsonc | 1              | yes        |
2022-04-09T16:00:01.0731762Z | JSON         | v8r                  | .json               | 1              | no         |
2022-04-09T16:00:01.0732116Z | JSON         | prettier             | .json               | 1              | yes        |
2022-04-09T16:00:01.0732468Z | SPELL        | misspell             |                     | 5              | yes        |
2022-04-09T16:00:01.0732826Z | SPELL        | cspell               |                     | 5              | no         |
2022-04-09T16:00:01.0733169Z | YAML         | prettier             | .yml|.yaml          | 4              | yes        |
2022-04-09T16:00:01.0733652Z | YAML         | yamllint             | .yml|.yaml          | 4              | no         |
2022-04-09T16:00:01.0734818Z | YAML         | v8r                  | .yml|.yaml          | 4              | no         |
2022-04-09T16:00:01.0735416Z +--------------+----------------------+---------------------+----------------+------------+
2022-04-09T16:00:01.0735694Z 
2022-04-09T16:00:01.1187972Z COPYPASTE: ['jscpd']
2022-04-09T16:00:01.1188383Z CREDENTIALS: ['secretlint']
2022-04-09T16:00:01.1188788Z EDITORCONFIG: ['editorconfig-checker']
2022-04-09T16:00:01.1189152Z GIT: ['git_diff']
2022-04-09T16:00:01.1189567Z JSON: ['jsonlint', 'eslint-plugin-jsonc', 'v8r', 'prettier']
2022-04-09T16:00:01.1189976Z SPELL: ['misspell', 'cspell']
2022-04-09T16:00:01.1190334Z YAML: ['prettier', 'yamllint', 'v8r']
2022-04-09T16:00:01.1250915Z [jscpd] command: ['jscpd', '--reporters', 'console,html', '--output', './report/copy-paste/', '-c', '/action/lib/.automation/.jscpd.json', '.']
2022-04-09T16:00:01.1258037Z [jscpd] CWD: /github/workspace
2022-04-09T16:00:01.1322146Z [secretlint] command: ['secretlint', '--secretlintignore', '.gitignore', '--secretlintrc', '/action/lib/.automation/.secretlintrc.json', '**/*']
2022-04-09T16:00:01.1326858Z [secretlint] CWD: /github/workspace
2022-04-09T16:00:01.8888298Z [jscpd] result: 0 Detection time:: 0.33ms
2022-04-09T16:00:01.8888548Z 
2022-04-09T16:00:01.8897416Z Linter version command: ['/node_modules/.bin/jscpd', '--version']
2022-04-09T16:00:01.9999319Z [secretlint] result: 0 
2022-04-09T16:00:02.0005759Z Linter version command: ['/node_modules/.bin/secretlint', '--version']
2022-04-09T16:00:02.5112902Z Linter version result: 0 4.1.0
2022-04-09T16:00:02.5113151Z 
2022-04-09T16:00:02.5118560Z 
2022-04-09T16:00:02.5119136Z �[1m### Processed [CREDENTIALS] files�[0m
2022-04-09T16:00:02.5119782Z - Using [secretlint v4.1.0] https://megalinter.github.io/v5/descriptors/credentials_secretlint
2022-04-09T16:00:02.5120329Z - MegaLinter key: [CREDENTIALS_SECRETLINT]
2022-04-09T16:00:02.5120730Z - Rules config: [.secretlintrc.json]
2022-04-09T16:00:02.5127027Z �[32m✅ Linted [CREDENTIALS] files with [secretlint] successfully - (0.87s)�[0m
2022-04-09T16:00:02.5162038Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:02.6152086Z Linter version result: 0 3.3.26
2022-04-09T16:00:02.6152326Z 
2022-04-09T16:00:02.6152334Z 
2022-04-09T16:00:02.6152788Z �[1m### Processed [COPYPASTE] files�[0m
2022-04-09T16:00:02.6153703Z - Using [jscpd v3.3.26] https://megalinter.github.io/v5/descriptors/copypaste_jscpd
2022-04-09T16:00:02.6154185Z - MegaLinter key: [COPYPASTE_JSCPD]
2022-04-09T16:00:02.6154522Z - Rules config: [.jscpd.json]
2022-04-09T16:00:02.6155037Z �[32m✅ Linted [COPYPASTE] files with [jscpd] successfully - (0.76s)�[0m
2022-04-09T16:00:02.6202532Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:02.9546173Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1614
2022-04-09T16:00:02.9575046Z Successfully posted Github Status for CREDENTIALS with secretlint
2022-04-09T16:00:02.9607157Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-CREDENTIALS_SECRETLINT.log
2022-04-09T16:00:02.9672100Z [editorconfig-checker] command: ['editorconfig-checker', '/github/workspace/.github/linters/cspell.json', '/github/workspace/.github/workflows/lint-megalinter-all.yaml', '/github/workspace/.github/workflows/lint-megalinter-documentation.yaml', '/github/workspace/.github/workflows/lint-megalinter-java.yaml', '/github/workspace/.github/workflows/lint-megalinter-python.yaml']
2022-04-09T16:00:02.9681642Z [editorconfig-checker] CWD: /github/workspace
2022-04-09T16:00:03.0564685Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1607
2022-04-09T16:00:03.0571829Z Successfully posted Github Status for COPYPASTE with jscpd
2022-04-09T16:00:03.0578464Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-COPYPASTE_JSCPD.log
2022-04-09T16:00:03.0676522Z [git_diff] command: ['git', 'diff', '--check']
2022-04-09T16:00:03.0682389Z [git_diff] CWD: /github/workspace
2022-04-09T16:00:03.0785618Z [git_diff] result: 0 
2022-04-09T16:00:03.0792146Z Linter version command: ['/usr/bin/git', '--version']
2022-04-09T16:00:03.0850743Z Linter version result: 0 git version 2.30.2
2022-04-09T16:00:03.0850980Z 
2022-04-09T16:00:03.0857506Z 
2022-04-09T16:00:03.0857964Z �[1m### Processed [GIT] files�[0m
2022-04-09T16:00:03.0858556Z - Using [git_diff v2.30.2] https://megalinter.github.io/v5/descriptors/git_git_diff
2022-04-09T16:00:03.0859063Z - MegaLinter key: [GIT_GIT_DIFF]
2022-04-09T16:00:03.0859430Z - Rules config: identified by [git_diff]
2022-04-09T16:00:03.0865984Z �[32m✅ Linted [GIT] files with [git_diff] successfully - (0.01s)�[0m
2022-04-09T16:00:03.0874967Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:03.4392679Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1604
2022-04-09T16:00:03.4414558Z Successfully posted Github Status for GIT with git_diff
2022-04-09T16:00:03.4484337Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-GIT_GIT_DIFF.log
2022-04-09T16:00:03.4490288Z [jsonlint] command: ['jsonlint', '/github/workspace/.github/linters/cspell.json']
2022-04-09T16:00:03.4514595Z [jsonlint] CWD: /github/workspace
2022-04-09T16:00:03.7031013Z [editorconfig-checker] result: 0 
2022-04-09T16:00:03.7031935Z Linter version command: ['/node_modules/.bin/editorconfig-checker', '-version']
2022-04-09T16:00:03.7192781Z [jsonlint] result: 0 {
2022-04-09T16:00:03.7193077Z   "version": "0.2",
2022-04-09T16:00:03.7193297Z   "import": [
2022-04-09T16:00:03.7193809Z     "@cspell/dict-aws/cspell-ext.json",
2022-04-09T16:00:03.7194184Z     "@cspell/dict-bash/cspell-ext.json",
2022-04-09T16:00:03.7194554Z     "@cspell/dict-companies/cspell-ext.json",
2022-04-09T16:00:03.7194941Z     "@cspell/dict-filetypes/cspell-ext.json",
2022-04-09T16:00:03.7195327Z     "@cspell/dict-fullstack/cspell-ext.json",
2022-04-09T16:00:03.7195677Z     "@cspell/dict-java/cspell-ext.json",
2022-04-09T16:00:03.7196131Z     "@cspell/dict-python/cspell-ext.json",
2022-04-09T16:00:03.7196610Z     "@cspell/dict-software-terms/cspell-ext.json"
2022-04-09T16:00:03.7196908Z   ],
2022-04-09T16:00:03.7197186Z   "words": [
2022-04-09T16:00:03.7197662Z     "massmutual",
2022-04-09T16:00:03.7198076Z     "edap"
2022-04-09T16:00:03.7198315Z   ],
2022-04-09T16:00:03.7198607Z   "ignorePaths": [
2022-04-09T16:00:03.7198934Z     ".github/workflows/*",
2022-04-09T16:00:03.7199199Z     ".github/config/*",
2022-04-09T16:00:03.7199567Z     ".github/linters/*",
2022-04-09T16:00:03.7199876Z     "poetry.lock",
2022-04-09T16:00:03.7200126Z     "docs/**",
2022-04-09T16:00:03.7200445Z     ".secrets.baseline",
2022-04-09T16:00:03.7200783Z     ".gitignore",
2022-04-09T16:00:03.7201036Z     "**/CHANGELOG.md",
2022-04-09T16:00:03.7201341Z     ".editorconfig"
2022-04-09T16:00:03.7201642Z   ]
2022-04-09T16:00:03.7201886Z }
2022-04-09T16:00:03.7202042Z 
2022-04-09T16:00:03.7208697Z Linter version command: ['/node_modules/.bin/jsonlint', '--version']
2022-04-09T16:00:03.9666126Z Linter version result: 0 2.3.5
2022-04-09T16:00:03.9666484Z 
2022-04-09T16:00:03.9666491Z 
2022-04-09T16:00:03.9684075Z 
2022-04-09T16:00:03.9684731Z �[1m### Processed [EDITORCONFIG] files�[0m
2022-04-09T16:00:03.9685677Z - Using [editorconfig-checker v2.3.5] https://megalinter.github.io/v5/descriptors/editorconfig_editorconfig_checker
2022-04-09T16:00:03.9686362Z - MegaLinter key: [EDITORCONFIG_EDITORCONFIG_CHECKER]
2022-04-09T16:00:03.9686850Z - Rules config: identified by [editorconfig-checker]
2022-04-09T16:00:03.9693265Z [editorconfig-checker] .github/linters/cspell.json
2022-04-09T16:00:03.9699530Z [editorconfig-checker] .github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:03.9706067Z [editorconfig-checker] .github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:03.9712299Z [editorconfig-checker] .github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:03.9718508Z [editorconfig-checker] .github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:03.9744058Z �[32m✅ Linted [EDITORCONFIG] files with [editorconfig-checker] successfully - (0.74s)�[0m
2022-04-09T16:00:03.9759394Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:03.9952883Z Linter version result: 1 1.6.3
2022-04-09T16:00:03.9953134Z 
2022-04-09T16:00:03.9953141Z 
2022-04-09T16:00:03.9953525Z �[1m### Processed [JSON] files�[0m
2022-04-09T16:00:03.9954189Z - Using [jsonlint v1.6.3] https://megalinter.github.io/v5/descriptors/json_jsonlint
2022-04-09T16:00:03.9954872Z - MegaLinter key: [JSON_JSONLINT]
2022-04-09T16:00:03.9955287Z - Rules config: identified by [jsonlint]
2022-04-09T16:00:03.9955824Z [jsonlint] .github/linters/cspell.json - SUCCESS - 0 error(s)
2022-04-09T16:00:03.9956457Z �[32m✅ Linted [JSON] files with [jsonlint] successfully - (0.27s)�[0m
2022-04-09T16:00:03.9978965Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:04.3047244Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1605
2022-04-09T16:00:04.3072681Z Successfully posted Github Status for JSON with jsonlint
2022-04-09T16:00:04.3079633Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-JSON_JSONLINT.log
2022-04-09T16:00:04.3092895Z [eslint-plugin-jsonc] command: ['eslint', '--no-ignore', '--fix', '-c', '/action/lib/.automation/.eslintrc-json.json', '--no-eslintrc', '/github/workspace/.github/linters/cspell.json']
2022-04-09T16:00:04.3097577Z [eslint-plugin-jsonc] CWD: /github/workspace
2022-04-09T16:00:04.3809174Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1625
2022-04-09T16:00:04.3813647Z Successfully posted Github Status for EDITORCONFIG with editorconfig-checker
2022-04-09T16:00:04.3826247Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-EDITORCONFIG_EDITORCONFIG_CHECKER.log
2022-04-09T16:00:04.3897750Z [misspell] command: ['misspell', '-w', '/github/workspace/.github/linters/cspell.json', '/github/workspace/.github/workflows/lint-megalinter-all.yaml', '/github/workspace/.github/workflows/lint-megalinter-documentation.yaml', '/github/workspace/.github/workflows/lint-megalinter-java.yaml', '/github/workspace/.github/workflows/lint-megalinter-python.yaml']
2022-04-09T16:00:04.3906990Z [misspell] CWD: /github/workspace
2022-04-09T16:00:04.4516249Z [misspell] result: 0 
2022-04-09T16:00:04.4550137Z Popen(['git', 'diff', '--abbrev=40', '--full-index', '-M', '--raw', '-z', '--no-color'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:04.4659458Z Linter version command: ['/bin/misspell', '-v']
2022-04-09T16:00:04.4750266Z Linter version result: 0 0.3.4
2022-04-09T16:00:04.4750529Z 
2022-04-09T16:00:04.4756951Z 
2022-04-09T16:00:04.4757507Z �[1m### Processed [SPELL] files�[0m
2022-04-09T16:00:04.4758323Z - Using [misspell v0.3.4] https://megalinter.github.io/v5/descriptors/spell_misspell
2022-04-09T16:00:04.4758870Z - MegaLinter key: [SPELL_MISSPELL]
2022-04-09T16:00:04.4759571Z - Rules config: identified by [misspell]
2022-04-09T16:00:04.4761300Z [misspell] .github/linters/cspell.json
2022-04-09T16:00:04.4775930Z [misspell] .github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:04.4776681Z [misspell] .github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:04.4777317Z [misspell] .github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:04.4777844Z [misspell] .github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:04.4778526Z �[32m✅ Linted [SPELL] files with [misspell] successfully - (0.07s)�[0m
2022-04-09T16:00:04.4779044Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:04.8349200Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1606
2022-04-09T16:00:04.8360394Z Successfully posted Github Status for SPELL with misspell
2022-04-09T16:00:04.8371521Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-SPELL_MISSPELL.log
2022-04-09T16:00:04.8382432Z [cspell] command: ['cspell', '-c', '/github/workspace/.github/linters/cspell.json', '/github/workspace/.github/linters/cspell.json', '/github/workspace/.github/workflows/lint-megalinter-all.yaml', '/github/workspace/.github/workflows/lint-megalinter-documentation.yaml', '/github/workspace/.github/workflows/lint-megalinter-java.yaml', '/github/workspace/.github/workflows/lint-megalinter-python.yaml']
2022-04-09T16:00:04.8393820Z [cspell] CWD: /github/workspace
2022-04-09T16:00:05.3316557Z [eslint-plugin-jsonc] result: 0 
2022-04-09T16:00:05.3324071Z Popen(['git', 'diff', '--abbrev=40', '--full-index', '-M', '--raw', '-z', '--no-color'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:05.3405041Z Linter version command: ['/usr/bin/npm', 'list', 'eslint-plugin-jsonc']
2022-04-09T16:00:06.0328973Z Linter version result: 1 /github/workspace
2022-04-09T16:00:06.0329839Z └── (empty)
2022-04-09T16:00:06.0330030Z 
2022-04-09T16:00:06.0330037Z 
2022-04-09T16:00:06.0330357Z Unable to get version for linter [eslint-plugin-jsonc]
2022-04-09T16:00:06.0330979Z /usr/bin/npm list eslint-plugin-jsonc returned output: (1) /github/workspace
2022-04-09T16:00:06.0331484Z └── (empty)
2022-04-09T16:00:06.0331884Z 
2022-04-09T16:00:06.0331890Z 
2022-04-09T16:00:06.0332288Z Unable to extract version with regex re.compile('\\d+(\\.\\d+)+') from ERROR
2022-04-09T16:00:06.0332566Z 
2022-04-09T16:00:06.0332809Z �[1m### Processed [JSON] files�[0m
2022-04-09T16:00:06.0333457Z - Using [eslint-plugin-jsonc vERROR] https://megalinter.github.io/v5/descriptors/json_eslint_plugin_jsonc
2022-04-09T16:00:06.0334112Z - MegaLinter key: [JSON_ESLINT_PLUGIN_JSONC]
2022-04-09T16:00:06.0334590Z - Rules config: [.eslintrc-json.json]
2022-04-09T16:00:06.0335085Z [eslint-plugin-jsonc] .github/linters/cspell.json
2022-04-09T16:00:06.0335724Z �[32m✅ Linted [JSON] files with [eslint-plugin-jsonc] successfully - (1.03s)�[0m
2022-04-09T16:00:06.0336239Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:06.3283290Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1616
2022-04-09T16:00:06.3308436Z Successfully posted Github Status for JSON with eslint-plugin-jsonc
2022-04-09T16:00:06.3318732Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-JSON_ESLINT_PLUGIN_JSONC.log
2022-04-09T16:00:06.3328240Z [v8r] command: ['v8r', '--ignore-errors', '/github/workspace/.github/linters/cspell.json']
2022-04-09T16:00:06.3342725Z [v8r] CWD: /github/workspace
2022-04-09T16:00:06.8195448Z [cspell] result: 1 
2022-04-09T16:00:06.8195835Z 1/5 ./.github/linters/cspell.json ...
2022-04-09T16:00:06.8196178Z 1/5 ./.github/linters/cspell.json 701.17ms
2022-04-09T16:00:06.8196489Z 
2022-04-09T16:00:06.8196906Z 2/5 ./.github/workflows/lint-megalinter-all.yaml ...
2022-04-09T16:00:06.8197400Z 2/5 ./.github/workflows/lint-megalinter-all.yaml 142.45ms X
2022-04-09T16:00:06.8197966Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:06.8198572Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:35:25 - Unknown word (PYLINT)
2022-04-09T16:00:06.8199110Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:81:33 - Unknown word (pyproject)
2022-04-09T16:00:06.8199744Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:82:14 - Unknown word (ISORT)
2022-04-09T16:00:06.8200330Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:82:33 - Unknown word (pyproject)
2022-04-09T16:00:06.8200863Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:83:14 - Unknown word (MYPY)
2022-04-09T16:00:06.8201438Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:83:32 - Unknown word (pyproject)
2022-04-09T16:00:06.8202071Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:124:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:06.8202660Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:129:56 - Unknown word (noreply)
2022-04-09T16:00:06.8202874Z 
2022-04-09T16:00:06.8203151Z 3/5 ./.github/workflows/lint-megalinter-documentation.yaml ...
2022-04-09T16:00:06.8203669Z 3/5 ./.github/workflows/lint-megalinter-documentation.yaml 57.85ms X
2022-04-09T16:00:06.8204283Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:06.8204897Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:96:14 - Unknown word (mkdir)
2022-04-09T16:00:06.8205547Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:120:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:06.8206190Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:125:56 - Unknown word (noreply)
2022-04-09T16:00:06.8206475Z 
2022-04-09T16:00:06.8206711Z 4/5 ./.github/workflows/lint-megalinter-java.yaml ...
2022-04-09T16:00:06.8207136Z 4/5 ./.github/workflows/lint-megalinter-java.yaml 67.99ms X
2022-04-09T16:00:06.8207707Z /github/workspace/.github/workflows/lint-megalinter-java.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:06.8208541Z /github/workspace/.github/workflows/lint-megalinter-java.yaml:119:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:06.8209448Z /github/workspace/.github/workflows/lint-megalinter-java.yaml:124:56 - Unknown word (noreply)
2022-04-09T16:00:06.8209690Z 
2022-04-09T16:00:06.8209993Z 5/5 ./.github/workflows/lint-megalinter-python.yaml ...
2022-04-09T16:00:06.8210577Z 5/5 ./.github/workflows/lint-megalinter-python.yaml 123.41ms X
2022-04-09T16:00:06.8211219Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:06.8211844Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:35:25 - Unknown word (PYLINT)
2022-04-09T16:00:06.8212539Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:81:33 - Unknown word (pyproject)
2022-04-09T16:00:06.8213212Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:82:14 - Unknown word (ISORT)
2022-04-09T16:00:06.8213914Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:82:33 - Unknown word (pyproject)
2022-04-09T16:00:06.8214828Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:83:14 - Unknown word (MYPY)
2022-04-09T16:00:06.8215584Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:83:32 - Unknown word (pyproject)
2022-04-09T16:00:06.8216333Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:124:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:06.8217103Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:129:56 - Unknown word (noreply)
2022-04-09T16:00:06.8217563Z CSpell: Files checked: 5, Issues found: 25 in 4 files
2022-04-09T16:00:06.8217804Z 
2022-04-09T16:00:06.8225937Z Linter version command: ['/node_modules/.bin/cspell', '--version']
2022-04-09T16:00:07.3342311Z Linter version result: 0 5.19.2
2022-04-09T16:00:07.3342597Z 
2022-04-09T16:00:07.3342604Z 
2022-04-09T16:00:07.3343089Z �[1m### Processed [SPELL] files�[0m
2022-04-09T16:00:07.3343694Z - Using [cspell v5.19.2] https://megalinter.github.io/v5/descriptors/spell_cspell
2022-04-09T16:00:07.3344260Z - MegaLinter key: [SPELL_CSPELL]
2022-04-09T16:00:07.3349393Z - Rules config: [/github/workspace/.github/linters/cspell.json]
2022-04-09T16:00:07.3349802Z [cspell] .github/linters/cspell.json
2022-04-09T16:00:07.3350590Z [cspell] .github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:07.3351456Z [cspell] .github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:07.3352237Z [cspell] .github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:07.3355306Z [cspell] .github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:07.3355794Z --Error detail:
2022-04-09T16:00:07.3355985Z 
2022-04-09T16:00:07.3406969Z 1/5 ./.github/linters/cspell.json ...
2022-04-09T16:00:07.3407563Z 1/5 ./.github/linters/cspell.json 701.17ms
2022-04-09T16:00:07.3407744Z 
2022-04-09T16:00:07.3408174Z 2/5 ./.github/workflows/lint-megalinter-all.yaml ...
2022-04-09T16:00:07.3408751Z 2/5 ./.github/workflows/lint-megalinter-all.yaml 142.45ms X
2022-04-09T16:00:07.3409455Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:07.3410125Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:35:25 - Unknown word (PYLINT)
2022-04-09T16:00:07.3410901Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:81:33 - Unknown word (pyproject)
2022-04-09T16:00:07.3411605Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:82:14 - Unknown word (ISORT)
2022-04-09T16:00:07.3412329Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:82:33 - Unknown word (pyproject)
2022-04-09T16:00:07.3412981Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:83:14 - Unknown word (MYPY)
2022-04-09T16:00:07.3413726Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:83:32 - Unknown word (pyproject)
2022-04-09T16:00:07.3414491Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:124:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:07.3415154Z /github/workspace/.github/workflows/lint-megalinter-all.yaml:129:56 - Unknown word (noreply)
2022-04-09T16:00:07.3415486Z 
2022-04-09T16:00:07.3415843Z 3/5 ./.github/workflows/lint-megalinter-documentation.yaml ...
2022-04-09T16:00:07.3416723Z 3/5 ./.github/workflows/lint-megalinter-documentation.yaml 57.85ms X
2022-04-09T16:00:07.3417500Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:07.3418231Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:96:14 - Unknown word (mkdir)
2022-04-09T16:00:07.3419034Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:120:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:07.3419818Z /github/workspace/.github/workflows/lint-megalinter-documentation.yaml:125:56 - Unknown word (noreply)
2022-04-09T16:00:07.3420159Z 
2022-04-09T16:00:07.3420461Z 4/5 ./.github/workflows/lint-megalinter-java.yaml ...
2022-04-09T16:00:07.3421006Z 4/5 ./.github/workflows/lint-megalinter-java.yaml 67.99ms X
2022-04-09T16:00:07.3421791Z /github/workspace/.github/workflows/lint-megalinter-java.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:07.3422545Z /github/workspace/.github/workflows/lint-megalinter-java.yaml:119:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:07.3423213Z /github/workspace/.github/workflows/lint-megalinter-java.yaml:124:56 - Unknown word (noreply)
2022-04-09T16:00:07.3423532Z 
2022-04-09T16:00:07.3423844Z 5/5 ./.github/workflows/lint-megalinter-python.yaml ...
2022-04-09T16:00:07.3426277Z 5/5 ./.github/workflows/lint-megalinter-python.yaml 123.41ms X
2022-04-09T16:00:07.3427003Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:13:42 - Unknown word (KUBERNETES)
2022-04-09T16:00:07.3427688Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:35:25 - Unknown word (PYLINT)
2022-04-09T16:00:07.3428418Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:81:33 - Unknown word (pyproject)
2022-04-09T16:00:07.3429198Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:82:14 - Unknown word (ISORT)
2022-04-09T16:00:07.3429908Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:82:33 - Unknown word (pyproject)
2022-04-09T16:00:07.3430642Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:83:14 - Unknown word (MYPY)
2022-04-09T16:00:07.3431384Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:83:32 - Unknown word (pyproject)
2022-04-09T16:00:07.3432130Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:124:15 - Unknown word (stefanzweifel)
2022-04-09T16:00:07.3432871Z /github/workspace/.github/workflows/lint-megalinter-python.yaml:129:56 - Unknown word (noreply)
2022-04-09T16:00:07.3433393Z CSpell: Files checked: 5, Issues found: 25 in 4 files
2022-04-09T16:00:07.3433639Z 
2022-04-09T16:00:07.3434093Z �[33m✅ Linted [SPELL] files with [cspell]: Found 25 non blocking error(s) - (1.98s)�[0m
2022-04-09T16:00:07.3441744Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:07.6684796Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1588
2022-04-09T16:00:07.6690213Z Successfully posted Github Status for SPELL with cspell
2022-04-09T16:00:07.6698855Z Generated additional TextReporter log for CSpellLinter:
2022-04-09T16:00:07.6699349Z 
2022-04-09T16:00:07.6699735Z You can skip this misspellings by defining the following .cspell.json file at the root of your repository
2022-04-09T16:00:07.6700369Z Of course, please correct real typos before :)
2022-04-09T16:00:07.6700635Z 
2022-04-09T16:00:07.6700848Z {
2022-04-09T16:00:07.6701233Z     "version": "0.2",
2022-04-09T16:00:07.6701691Z     "language": "en",
2022-04-09T16:00:07.6702043Z     "ignorePaths": [
2022-04-09T16:00:07.6702489Z         "**/node_modules/**",
2022-04-09T16:00:07.6703128Z         "**/vscode-extension/**",
2022-04-09T16:00:07.6703591Z         "**/.git/**",
2022-04-09T16:00:07.6703930Z         ".vscode",
2022-04-09T16:00:07.6704588Z         "package-lock.json",
2022-04-09T16:00:07.6705101Z         "report"
2022-04-09T16:00:07.6705441Z     ],
2022-04-09T16:00:07.6705861Z     "words": [
2022-04-09T16:00:07.6706492Z         "ISORT",
2022-04-09T16:00:07.6706889Z         "KUBERNETES",
2022-04-09T16:00:07.6707231Z         "MYPY",
2022-04-09T16:00:07.6707623Z         "PYLINT",
2022-04-09T16:00:07.6708061Z         "mkdir",
2022-04-09T16:00:07.6708395Z         "noreply",
2022-04-09T16:00:07.6708799Z         "pyproject",
2022-04-09T16:00:07.6709204Z         "stefanzweifel"
2022-04-09T16:00:07.6709542Z     ]
2022-04-09T16:00:07.6709954Z }
2022-04-09T16:00:07.6710197Z 
2022-04-09T16:00:07.6710277Z 
2022-04-09T16:00:07.6776770Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/WARNING-SPELL_CSPELL.log
2022-04-09T16:00:07.6839968Z [prettier] command: ['prettier', '--write', '--config', '/github/workspace/.github/linters/prettier.yaml', '/github/workspace/.github/workflows/lint-megalinter-all.yaml', '/github/workspace/.github/workflows/lint-megalinter-documentation.yaml', '/github/workspace/.github/workflows/lint-megalinter-java.yaml', '/github/workspace/.github/workflows/lint-megalinter-python.yaml']
2022-04-09T16:00:07.6850528Z [prettier] CWD: /github/workspace
2022-04-09T16:00:07.8600952Z [v8r] result: 0 ℹ️ Found schema in https://www.schemastore.org/api/json/catalog.json ...
2022-04-09T16:00:07.8601972Z Validating /github/workspace/.github/linters/cspell.json against schema from https://raw.githubusercontent.com/streetsidesoftware/cspell/main/packages/cspell-types/cspell.schema.json ...
2022-04-09T16:00:07.8602751Z ✅ /github/workspace/.github/linters/cspell.json is valid
2022-04-09T16:00:07.8603007Z 
2022-04-09T16:00:07.8603318Z Linter version command: ['/node_modules/.bin/v8r', '--version']
2022-04-09T16:00:08.1934615Z Linter version result: 0 0.6.1
2022-04-09T16:00:08.1934895Z 
2022-04-09T16:00:08.1945264Z 
2022-04-09T16:00:08.1945934Z �[1m### Processed [JSON] files�[0m
2022-04-09T16:00:08.1946725Z - Using [v8r v0.6.1] https://megalinter.github.io/v5/descriptors/json_v8r
2022-04-09T16:00:08.1947235Z - MegaLinter key: [JSON_V8R]
2022-04-09T16:00:08.1951838Z - Rules config: identified by [v8r]
2022-04-09T16:00:08.1952413Z [v8r] .github/linters/cspell.json - SUCCESS - 0 error(s)
2022-04-09T16:00:08.1957247Z �[32m✅ Linted [JSON] files with [v8r] successfully - (1.53s)�[0m
2022-04-09T16:00:08.1969040Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:08.4826138Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1600
2022-04-09T16:00:08.4826775Z Successfully posted Github Status for JSON with v8r
2022-04-09T16:00:08.4827417Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-JSON_V8R.log
2022-04-09T16:00:08.4828275Z [prettier] command: ['prettier', '--write', '/github/workspace/.github/linters/cspell.json']
2022-04-09T16:00:08.4828779Z [prettier] CWD: /github/workspace
2022-04-09T16:00:08.4937069Z [prettier] result: 0 .github/workflows/lint-megalinter-all.yaml 110ms
2022-04-09T16:00:08.4937869Z .github/workflows/lint-megalinter-documentation.yaml 30ms
2022-04-09T16:00:08.4938610Z .github/workflows/lint-megalinter-java.yaml 49ms
2022-04-09T16:00:08.4939130Z .github/workflows/lint-megalinter-python.yaml 56ms
2022-04-09T16:00:08.4939409Z 
2022-04-09T16:00:08.4946099Z Popen(['git', 'diff', '--abbrev=40', '--full-index', '-M', '--raw', '-z', '--no-color'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:08.5042955Z Linter version command: ['/node_modules/.bin/prettier', '--version']
2022-04-09T16:00:08.9366997Z Linter version result: 0 2.6.0
2022-04-09T16:00:08.9367290Z 
2022-04-09T16:00:08.9367296Z 
2022-04-09T16:00:08.9367767Z �[1m### Processed [YAML] files�[0m
2022-04-09T16:00:08.9368415Z - Using [prettier v2.6.0] https://megalinter.github.io/v5/descriptors/yaml_prettier
2022-04-09T16:00:08.9368914Z - MegaLinter key: [YAML_PRETTIER]
2022-04-09T16:00:08.9369619Z - Rules config: [/github/workspace/.github/linters/prettier.yaml]
2022-04-09T16:00:08.9370219Z [prettier] .github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:08.9370985Z [prettier] .github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:08.9376260Z [prettier] .github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:08.9382629Z [prettier] .github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:08.9389427Z �[32m✅ Linted [YAML] files with [prettier] successfully - (0.82s)�[0m
2022-04-09T16:00:08.9395043Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:09.0116462Z [prettier] result: 0 .github/linters/cspell.json 89ms
2022-04-09T16:00:09.0116849Z 
2022-04-09T16:00:09.0152303Z Popen(['git', 'diff', '--abbrev=40', '--full-index', '-M', '--raw', '-z', '--no-color'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:09.0203394Z Linter version command: ['/node_modules/.bin/prettier', '--version']
2022-04-09T16:00:09.2370752Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1605
2022-04-09T16:00:09.2379859Z Successfully posted Github Status for YAML with prettier
2022-04-09T16:00:09.2390655Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-YAML_PRETTIER.log
2022-04-09T16:00:09.2401855Z [yamllint] command: ['yamllint', '-c', '/github/workspace/.github/linters/yamllint.yaml', '/github/workspace/.github/workflows/lint-megalinter-all.yaml', '/github/workspace/.github/workflows/lint-megalinter-documentation.yaml', '/github/workspace/.github/workflows/lint-megalinter-java.yaml', '/github/workspace/.github/workflows/lint-megalinter-python.yaml']
2022-04-09T16:00:09.2413385Z [yamllint] CWD: /github/workspace
2022-04-09T16:00:09.4207927Z Linter version result: 0 2.6.0
2022-04-09T16:00:09.4208153Z 
2022-04-09T16:00:09.4219969Z 
2022-04-09T16:00:09.4220576Z �[1m### Processed [JSON] files�[0m
2022-04-09T16:00:09.4221204Z - Using [prettier v2.6.0] https://megalinter.github.io/v5/descriptors/json_prettier
2022-04-09T16:00:09.4221741Z - MegaLinter key: [JSON_PRETTIER]
2022-04-09T16:00:09.4222138Z - Rules config: identified by [prettier]
2022-04-09T16:00:09.4228188Z [prettier] .github/linters/cspell.json
2022-04-09T16:00:09.4233781Z �[32m✅ Linted [JSON] files with [prettier] successfully - (0.54s)�[0m
2022-04-09T16:00:09.4234300Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:09.4897501Z [yamllint] result: 0 
2022-04-09T16:00:09.4898308Z Linter version command: ['/usr/local/bin/yamllint', '--version']
2022-04-09T16:00:09.5902793Z Linter version result: 0 yamllint 1.26.3
2022-04-09T16:00:09.5903167Z 
2022-04-09T16:00:09.5909106Z 
2022-04-09T16:00:09.5909814Z �[1m### Processed [YAML] files�[0m
2022-04-09T16:00:09.5910661Z - Using [yamllint v1.26.3] https://megalinter.github.io/v5/descriptors/yaml_yamllint
2022-04-09T16:00:09.5911399Z - MegaLinter key: [YAML_YAMLLINT]
2022-04-09T16:00:09.5912267Z - Rules config: [/github/workspace/.github/linters/yamllint.yaml]
2022-04-09T16:00:09.5920624Z [yamllint] .github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:09.5927034Z [yamllint] .github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:09.5933452Z [yamllint] .github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:09.5942769Z [yamllint] .github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:09.5949400Z �[32m✅ Linted [YAML] files with [yamllint] successfully - (0.25s)�[0m
2022-04-09T16:00:09.5958482Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:09.7332919Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1605
2022-04-09T16:00:09.7367362Z Successfully posted Github Status for JSON with prettier
2022-04-09T16:00:09.7378167Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-JSON_PRETTIER.log
2022-04-09T16:00:09.9150845Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1605
2022-04-09T16:00:09.9169320Z Successfully posted Github Status for YAML with yamllint
2022-04-09T16:00:09.9170461Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-YAML_YAMLLINT.log
2022-04-09T16:00:09.9171215Z [v8r] command: ['v8r', '--ignore-errors', '/github/workspace/.github/workflows/lint-megalinter-all.yaml']
2022-04-09T16:00:09.9171668Z [v8r] CWD: /github/workspace
2022-04-09T16:00:10.5093548Z [v8r] result: 0 ❌ Could not find a schema to validate /github/workspace/.github/workflows/lint-megalinter-all.yaml
2022-04-09T16:00:10.5093966Z 
2022-04-09T16:00:10.5094421Z [v8r] command: ['v8r', '--ignore-errors', '/github/workspace/.github/workflows/lint-megalinter-documentation.yaml']
2022-04-09T16:00:10.5101553Z [v8r] CWD: /github/workspace
2022-04-09T16:00:11.1003545Z [v8r] result: 0 ❌ Could not find a schema to validate /github/workspace/.github/workflows/lint-megalinter-documentation.yaml
2022-04-09T16:00:11.1003946Z 
2022-04-09T16:00:11.1005827Z [v8r] command: ['v8r', '--ignore-errors', '/github/workspace/.github/workflows/lint-megalinter-java.yaml']
2022-04-09T16:00:11.1037810Z [v8r] CWD: /github/workspace
2022-04-09T16:00:11.6718150Z [v8r] result: 0 ❌ Could not find a schema to validate /github/workspace/.github/workflows/lint-megalinter-java.yaml
2022-04-09T16:00:11.6718522Z 
2022-04-09T16:00:11.6729483Z [v8r] command: ['v8r', '--ignore-errors', '/github/workspace/.github/workflows/lint-megalinter-python.yaml']
2022-04-09T16:00:11.6734835Z [v8r] CWD: /github/workspace
2022-04-09T16:00:12.2403662Z [v8r] result: 0 ❌ Could not find a schema to validate /github/workspace/.github/workflows/lint-megalinter-python.yaml
2022-04-09T16:00:12.2404040Z 
2022-04-09T16:00:12.2429352Z Linter version command: ['/node_modules/.bin/v8r', '--version']
2022-04-09T16:00:12.5711443Z Linter version result: 0 0.6.1
2022-04-09T16:00:12.5711687Z 
2022-04-09T16:00:12.5711703Z 
2022-04-09T16:00:12.5712125Z �[1m### Processed [YAML] files�[0m
2022-04-09T16:00:12.5712654Z - Using [v8r v0.6.1] https://megalinter.github.io/v5/descriptors/yaml_v8r
2022-04-09T16:00:12.5713118Z - MegaLinter key: [YAML_V8R]
2022-04-09T16:00:12.5715982Z - Rules config: identified by [v8r]
2022-04-09T16:00:12.5718928Z [v8r] .github/workflows/lint-megalinter-all.yaml - SUCCESS - 0 error(s)
2022-04-09T16:00:12.5722131Z [v8r] .github/workflows/lint-megalinter-documentation.yaml - SUCCESS - 0 error(s)
2022-04-09T16:00:12.5725045Z [v8r] .github/workflows/lint-megalinter-java.yaml - SUCCESS - 0 error(s)
2022-04-09T16:00:12.5727928Z [v8r] .github/workflows/lint-megalinter-python.yaml - SUCCESS - 0 error(s)
2022-04-09T16:00:12.5728512Z �[32m✅ Linted [YAML] files with [v8r] successfully - (2.32s)�[0m
2022-04-09T16:00:12.5757038Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:12.8926766Z https://api.github.com:443 "POST /repos/massmutual/edap-workflows/statuses/54b13b61e7c2283d825551f24dd53bb102d3152e HTTP/1.1" 201 1600
2022-04-09T16:00:12.8961369Z Successfully posted Github Status for YAML with v8r
2022-04-09T16:00:12.8972253Z [Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-YAML_V8R.log
2022-04-09T16:00:12.9216427Z [Post] No commands declared in user configuration
2022-04-09T16:00:12.9326563Z 
2022-04-09T16:00:12.9386907Z +----SUMMARY------+----------------------+---------------+-------+-------+--------+--------------+
2022-04-09T16:00:12.9387475Z | Descriptor      | Linter               | Mode          | Files | Fixed | Errors | Elapsed time |
2022-04-09T16:00:12.9388086Z +-----------------+----------------------+---------------+-------+-------+--------+--------------+
2022-04-09T16:00:12.9505616Z | ✅ COPYPASTE    | jscpd                | project       |   n/a |       |      0 |        0.76s |
2022-04-09T16:00:12.9506207Z | ✅ CREDENTIALS  | secretlint           | project       |   n/a |       |      0 |        0.87s |
2022-04-09T16:00:12.9506774Z | ✅ EDITORCONFIG | editorconfig-checker | list_of_files |     5 |       |      0 |        0.74s |
2022-04-09T16:00:12.9514018Z | ✅ GIT          | git_diff             | project       |   n/a |       |      0 |        0.01s |
2022-04-09T16:00:12.9574502Z | ✅ JSON         | eslint-plugin-jsonc  | list_of_files |     1 |     0 |      0 |        1.03s |
2022-04-09T16:00:12.9633053Z | ✅ JSON         | jsonlint             | file          |     1 |       |      0 |        0.27s |
2022-04-09T16:00:12.9669131Z | ✅ JSON         | prettier             | list_of_files |     1 |     0 |      0 |        0.54s |
2022-04-09T16:00:12.9711786Z | ✅ JSON         | v8r                  | file          |     1 |       |      0 |        1.53s |
2022-04-09T16:00:12.9717085Z | ◬ SPELL         | cspell               | list_of_files |     5 |       |     25 |        1.98s |
2022-04-09T16:00:12.9720387Z | ✅ SPELL        | misspell             | list_of_files |     5 |     0 |      0 |        0.07s |
2022-04-09T16:00:12.9724633Z | ✅ YAML         | prettier             | list_of_files |     4 |     0 |      0 |        0.82s |
2022-04-09T16:00:12.9729723Z | ✅ YAML         | v8r                  | file          |     4 |       |      0 |        2.32s |
2022-04-09T16:00:12.9733091Z | ✅ YAML         | yamllint             | list_of_files |     4 |       |      0 |        0.25s |
2022-04-09T16:00:12.9739711Z +-----------------+----------------------+---------------+-------+-------+--------+--------------+
2022-04-09T16:00:12.9741478Z 
2022-04-09T16:00:12.9747619Z 
2022-04-09T16:00:12.9748417Z ## [MegaLinter](https://megalinter.github.io) status: :warning: [**WARNING**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)
2022-04-09T16:00:12.9748793Z 
2022-04-09T16:00:12.9749148Z |  Descriptor   |                                              Linter                                              |Files|Fixed|                                    Errors                                    |Elapsed time|
2022-04-09T16:00:12.9751607Z |---------------|--------------------------------------------------------------------------------------------------|-----|----:|------------------------------------------------------------------------------|------------|
2022-04-09T16:00:12.9753010Z |✅ COPYPASTE   |[jscpd](https://megalinter.github.io/descriptors/copypaste_jscpd)                                 |yes  |     |no                                                                            |0.76s       |
2022-04-09T16:00:12.9754033Z |✅ CREDENTIALS |[secretlint](https://megalinter.github.io/descriptors/credentials_secretlint)                     |yes  |     |no                                                                            |0.87s       |
2022-04-09T16:00:12.9755213Z |✅ EDITORCONFIG|[editorconfig-checker](https://megalinter.github.io/descriptors/editorconfig_editorconfig_checker)|5    |     |                                                                             0|0.74s       |
2022-04-09T16:00:12.9756359Z |✅ GIT         |[git_diff](https://megalinter.github.io/descriptors/git_git_diff)                                 |yes  |     |no                                                                            |0.01s       |
2022-04-09T16:00:12.9757265Z |✅ JSON        |[eslint-plugin-jsonc](https://megalinter.github.io/descriptors/json_eslint_plugin_jsonc)          |1    |    0|                                                                             0|1.03s       |
2022-04-09T16:00:12.9758148Z |✅ JSON        |[jsonlint](https://megalinter.github.io/descriptors/json_jsonlint)                                |1    |     |                                                                             0|0.27s       |
2022-04-09T16:00:12.9758980Z |✅ JSON        |[prettier](https://megalinter.github.io/descriptors/json_prettier)                                |1    |    0|                                                                             0|0.54s       |
2022-04-09T16:00:12.9759799Z |✅ JSON        |[v8r](https://megalinter.github.io/descriptors/json_v8r)                                          |1    |     |                                                                             0|1.53s       |
2022-04-09T16:00:12.9760722Z |:warning: SPELL|[cspell](https://megalinter.github.io/descriptors/spell_cspell)                                   |5    |     |[**25**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)|1.98s       |
2022-04-09T16:00:12.9761870Z |✅ SPELL       |[misspell](https://megalinter.github.io/descriptors/spell_misspell)                               |5    |    0|                                                                             0|0.07s       |
2022-04-09T16:00:12.9762730Z |✅ YAML        |[prettier](https://megalinter.github.io/descriptors/yaml_prettier)                                |4    |    0|                                                                             0|0.82s       |
2022-04-09T16:00:12.9763642Z |✅ YAML        |[v8r](https://megalinter.github.io/descriptors/yaml_v8r)                                          |4    |     |                                                                             0|2.32s       |
2022-04-09T16:00:12.9764467Z |✅ YAML        |[yamllint](https://megalinter.github.io/descriptors/yaml_yamllint)                                |4    |     |                                                                             0|0.25s       |
2022-04-09T16:00:12.9764781Z 
2022-04-09T16:00:12.9764787Z 
2022-04-09T16:00:12.9765391Z See errors details in [**artifact MegaLinter reports** on CI Job page](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)
2022-04-09T16:00:12.9766031Z _Set `VALIDATE_ALL_CODEBASE: true` in mega-linter.yml to validate all sources, not only the diff_
2022-04-09T16:00:12.9766285Z 
2022-04-09T16:00:12.9766441Z Starting new HTTPS connection (1): api.github.com:443
2022-04-09T16:00:13.1275068Z https://api.github.com:443 "GET /repos/massmutual/edap-workflows HTTP/1.1" 200 None
2022-04-09T16:00:13.1329953Z GET https://api.github.com/repos/massmutual/edap-workflows {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Sat, 09 Apr 2022 16:00:13 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"88c92e9529bd3894483738248a951dbf117657f0bdc81598b5969e3ece5dda25"', 'last-modified': 'Fri, 08 Apr 2022 17:13:33 GMT', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '15000', 'x-ratelimit-remaining': '14960', 'x-ratelimit-reset': '1649523559', 'x-ratelimit-used': '40', 'x-ratelimit-resource': 'core', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '0', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '07C2:027C:146C7E:2BC3A8:6251AD8C'} {"id":468768125,"node_id":"R_kgDOG_DVfQ","name":"edap-workflows","full_name":"massmutual/edap-workflows","private":true,"owner":{"login":"massmutual","id":13539447,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEzNTM5NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/13539447?v=4","gravatar_id":"","url":"https://api.github.com/users/massmutual","html_url":"https://github.com/massmutual","followers_url":"https://api.github.com/users/massmutual/followers","following_url":"https://api.github.com/users/massmutual/following{/other_user}","gists_url":"https://api.github.com/users/massmutual/gists{/gist_id}","starred_url":"https://api.github.com/users/massmutual/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/massmutual/subscriptions","organizations_url":"https://api.github.com/users/massmutual/orgs","repos_url":"https://api.github.com/users/massmutual/repos","events_url":"https://api.github.com/users/massmutual/events{/privacy}","received_events_url":"https://api.github.com/users/massmutual/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/massmutual/edap-workflows","description":null,"fork":false,"url":"https://api.github.com/repos/massmutual/edap-workflows","forks_url":"https://api.github.com/repos/massmutual/edap-workflows/forks","keys_url":"https://api.github.com/repos/massmutual/edap-workflows/keys{/key_id}","collaborators_url":"https://api.github.com/repos/massmutual/edap-workflows/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/massmutual/edap-workflows/teams","hooks_url":"https://api.github.com/repos/massmutual/edap-workflows/hooks","issue_events_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/events{/number}","events_url":"https://api.github.com/repos/massmutual/edap-workflows/events","assignees_url":"https://api.github.com/repos/massmutual/edap-workflows/assignees{/user}","branches_url":"https://api.github.com/repos/massmutual/edap-workflows/branches{/branch}","tags_url":"https://api.github.com/repos/massmutual/edap-workflows/tags","blobs_url":"https://api.github.com/repos/massmutual/edap-workflows/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/massmutual/edap-workflows/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/massmutual/edap-workflows/git/refs{/sha}","trees_url":"https://api.github.com/repos/massmutual/edap-workflows/git/trees{/sha}","statuses_url":"https://api.github.com/repos/massmutual/edap-workflows/statuses/{sha}","languages_url":"https://api.github.com/repos/massmutual/edap-workflows/languages","stargazers_url":"https://api.github.com/repos/massmutual/edap-workflows/stargazers","contributors_url":"https://api.github.com/repos/massmutual/edap-workflows/contributors","subscribers_url":"https://api.github.com/repos/massmutual/edap-workflows/subscribers","subscription_url":"https://api.github.com/repos/massmutual/edap-workflows/subscription","commits_url":"https://api.github.com/repos/massmutual/edap-workflows/commits{/sha}","git_commits_url":"https://api.github.com/repos/massmutual/edap-workflows/git/commits{/sha}","comments_url":"https://api.github.com/repos/massmutual/edap-workflows/comments{/number}","issue_comment_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments{/number}","contents_url":"https://api.github.com/repos/massmutual/edap-workflows/contents/{+path}","compare_url":"https://api.github.com/repos/massmutual/edap-workflows/compare/{base}...{head}","merges_url":"https://api.github.com/repos/massmutual/edap-workflows/merges","archive_url":"https://api.github.com/repos/massmutual/edap-workflows/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/massmutual/edap-workflows/downloads","issues_url":"https://api.github.com/repos/massmutual/edap-workflows/issues{/number}","pulls_url":"https://api.github.com/repos/massmutual/edap-workflows/pulls{/number}","milestones_url":"https://api.github.com/repos/massmutual/edap-workflows/milestones{/number}","notifications_url":"https://api.github.com/repos/massmutual/edap-workflows/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/massmutual/edap-workflows/labels{/name}","releases_url":"https://api.github.com/repos/massmutual/edap-workflows/releases{/id}","deployments_url":"https://api.github.com/repos/massmutual/edap-workflows/deployments","created_at":"2022-03-11T13:48:58Z","updated_at":"2022-04-08T17:13:33Z","pushed_at":"2022-04-09T15:59:06Z","git_url":"git://github.com/massmutual/edap-workflows.git","ssh_url":"git@github.com:massmutual/edap-workflows.git","clone_url":"https://github.com/massmutual/edap-workflows.git","svn_url":"https://github.com/massmutual/edap-workflows","homepage":null,"size":255,"stargazers_count":1,"watchers_count":1,"language":"Makefile","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":7,"license":null,"allow_forking":false,"is_template":false,"topics":[],"visibility":"internal","forks":0,"open_issues":7,"watchers":1,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":false},"temp_clone_token":"AJ7VCKVSCLWASBSDQH2BDKLCKGXLTAVPNFXHG5DBNRWGC5DJN5XF62LEZ4AAAAABGBAR7WNRNFXHG5DBNRWGC5DJN5XF65DZOBS32U3DN5YGKZCJNZ2GKZ3SMF2GS33OJFXHG5DBNRWGC5DJN5XA","allow_squash_merge":true,"allow_merge_commit":false,"allow_rebase_merge":false,"allow_auto_merge":false,"delete_branch_on_merge":true,"allow_update_branch":true,"organization":{"login":"massmutual","id":13539447,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEzNTM5NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/13539447?v=4","gravatar_id":"","url":"https://api.github.com/users/massmutual","html_url":"https://github.com/massmutual","followers_url":"https://api.github.com/users/massmutual/followers","following_url":"https://api.github.com/users/massmutual/following{/other_user}","gists_url":"https://api.github.com/users/massmutual/gists{/gist_id}","starred_url":"https://api.github.com/users/massmutual/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/massmutual/subscriptions","organizations_url":"https://api.github.com/users/massmutual/orgs","repos_url":"https://api.github.com/users/massmutual/repos","events_url":"https://api.github.com/users/massmutual/events{/privacy}","received_events_url":"https://api.github.com/users/massmutual/received_events","type":"Organization","site_admin":false},"network_count":0,"subscribers_count":2}
2022-04-09T16:00:13.1352659Z Identified PR#63 from environment
2022-04-09T16:00:13.3722015Z https://api.github.com:443 "GET /repos/massmutual/edap-workflows/pulls/63 HTTP/1.1" 200 None
2022-04-09T16:00:13.3784996Z GET https://api.github.com/repos/massmutual/edap-workflows/pulls/63 {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Sat, 09 Apr 2022 16:00:13 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"dde33d986ee00e73c80deb2c6a2b88c1384a740ca27ca26c75a4ab1916f70431"', 'last-modified': 'Sat, 09 Apr 2022 15:59:28 GMT', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '15000', 'x-ratelimit-remaining': '14959', 'x-ratelimit-reset': '1649523559', 'x-ratelimit-used': '41', 'x-ratelimit-resource': 'core', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '0', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '07C2:027C:146C80:2BC3AD:6251AD8D'} {"url":"https://api.github.com/repos/massmutual/edap-workflows/pulls/63","id":904897464,"node_id":"PR_kwDOG_DVfc4176O4","html_url":"https://github.com/massmutual/edap-workflows/pull/63","diff_url":"https://github.com/massmutual/edap-workflows/pull/63.diff","patch_url":"https://github.com/massmutual/edap-workflows/pull/63.patch","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","number":63,"state":"open","locked":false,"title":"fix(cspell): using json config","user":{"login":"Andrew-Sheridan","id":50179676,"node_id":"MDQ6VXNlcjUwMTc5Njc2","avatar_url":"https://avatars.githubusercontent.com/u/50179676?v=4","gravatar_id":"","url":"https://api.github.com/users/Andrew-Sheridan","html_url":"https://github.com/Andrew-Sheridan","followers_url":"https://api.github.com/users/Andrew-Sheridan/followers","following_url":"https://api.github.com/users/Andrew-Sheridan/following{/other_user}","gists_url":"https://api.github.com/users/Andrew-Sheridan/gists{/gist_id}","starred_url":"https://api.github.com/users/Andrew-Sheridan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Andrew-Sheridan/subscriptions","organizations_url":"https://api.github.com/users/Andrew-Sheridan/orgs","repos_url":"https://api.github.com/users/Andrew-Sheridan/repos","events_url":"https://api.github.com/users/Andrew-Sheridan/events{/privacy}","received_events_url":"https://api.github.com/users/Andrew-Sheridan/received_events","type":"User","site_admin":false},"body":"# Pull Request\r\n<!--\r\nPlease ensure the PR title indicates the type of change and the scope, like `type(scope): comment`.\r\neg `chore(CODEOWNERS): assigned repo ownership to @massmutual/edap`\r\n-->\r\n\r\n## Description\r\n<!-- Details: Why did you make this change? How did you make the change? etc -->\r\n\r\n\r\n\r\n## Impact\r\n<!-- Describe how these changes may impact downstream users of this package. -->\r\n\r\n\r\n\r\n## JIRA Ticket\r\n<!-- Details: What Ticket is tracking this work?\r\nTicket numbers from JIRA will automatically become links to the ticket.\r\nIf they do not then please reach out to the repo admins and ask them to update the autolink references.\r\n-->\r\n\r\nTicket: EDAP-\r\n","created_at":"2022-04-09T13:07:34Z","updated_at":"2022-04-09T15:59:28Z","closed_at":null,"merged_at":null,"merge_commit_sha":"54b13b61e7c2283d825551f24dd53bb102d3152e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":3954620048,"node_id":"LA_kwDOG_DVfc7rtraQ","url":"https://api.github.com/repos/massmutual/edap-workflows/labels/ci","name":"ci","color":"00adff","default":false,"description":"Related to project CICD"}],"milestone":null,"draft":true,"commits_url":"https://api.github.com/repos/massmutual/edap-workflows/pulls/63/commits","review_comments_url":"https://api.github.com/repos/massmutual/edap-workflows/pulls/63/comments","review_comment_url":"https://api.github.com/repos/massmutual/edap-workflows/pulls/comments{/number}","comments_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63/comments","statuses_url":"https://api.github.com/repos/massmutual/edap-workflows/statuses/67f0d26f6ef94cc14385a13671b18997ebc9a071","head":{"label":"massmutual:bugfix/EDAP-000/cspell-json","ref":"bugfix/EDAP-000/cspell-json","sha":"67f0d26f6ef94cc14385a13671b18997ebc9a071","user":{"login":"massmutual","id":13539447,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEzNTM5NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/13539447?v=4","gravatar_id":"","url":"https://api.github.com/users/massmutual","html_url":"https://github.com/massmutual","followers_url":"https://api.github.com/users/massmutual/followers","following_url":"https://api.github.com/users/massmutual/following{/other_user}","gists_url":"https://api.github.com/users/massmutual/gists{/gist_id}","starred_url":"https://api.github.com/users/massmutual/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/massmutual/subscriptions","organizations_url":"https://api.github.com/users/massmutual/orgs","repos_url":"https://api.github.com/users/massmutual/repos","events_url":"https://api.github.com/users/massmutual/events{/privacy}","received_events_url":"https://api.github.com/users/massmutual/received_events","type":"Organization","site_admin":false},"repo":{"id":468768125,"node_id":"R_kgDOG_DVfQ","name":"edap-workflows","full_name":"massmutual/edap-workflows","private":true,"owner":{"login":"massmutual","id":13539447,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEzNTM5NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/13539447?v=4","gravatar_id":"","url":"https://api.github.com/users/massmutual","html_url":"https://github.com/massmutual","followers_url":"https://api.github.com/users/massmutual/followers","following_url":"https://api.github.com/users/massmutual/following{/other_user}","gists_url":"https://api.github.com/users/massmutual/gists{/gist_id}","starred_url":"https://api.github.com/users/massmutual/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/massmutual/subscriptions","organizations_url":"https://api.github.com/users/massmutual/orgs","repos_url":"https://api.github.com/users/massmutual/repos","events_url":"https://api.github.com/users/massmutual/events{/privacy}","received_events_url":"https://api.github.com/users/massmutual/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/massmutual/edap-workflows","description":null,"fork":false,"url":"https://api.github.com/repos/massmutual/edap-workflows","forks_url":"https://api.github.com/repos/massmutual/edap-workflows/forks","keys_url":"https://api.github.com/repos/massmutual/edap-workflows/keys{/key_id}","collaborators_url":"https://api.github.com/repos/massmutual/edap-workflows/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/massmutual/edap-workflows/teams","hooks_url":"https://api.github.com/repos/massmutual/edap-workflows/hooks","issue_events_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/events{/number}","events_url":"https://api.github.com/repos/massmutual/edap-workflows/events","assignees_url":"https://api.github.com/repos/massmutual/edap-workflows/assignees{/user}","branches_url":"https://api.github.com/repos/massmutual/edap-workflows/branches{/branch}","tags_url":"https://api.github.com/repos/massmutual/edap-workflows/tags","blobs_url":"https://api.github.com/repos/massmutual/edap-workflows/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/massmutual/edap-workflows/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/massmutual/edap-workflows/git/refs{/sha}","trees_url":"https://api.github.com/repos/massmutual/edap-workflows/git/trees{/sha}","statuses_url":"https://api.github.com/repos/massmutual/edap-workflows/statuses/{sha}","languages_url":"https://api.github.com/repos/massmutual/edap-workflows/languages","stargazers_url":"https://api.github.com/repos/massmutual/edap-workflows/stargazers","contributors_url":"https://api.github.com/repos/massmutual/edap-workflows/contributors","subscribers_url":"https://api.github.com/repos/massmutual/edap-workflows/subscribers","subscription_url":"https://api.github.com/repos/massmutual/edap-workflows/subscription","commits_url":"https://api.github.com/repos/massmutual/edap-workflows/commits{/sha}","git_commits_url":"https://api.github.com/repos/massmutual/edap-workflows/git/commits{/sha}","comments_url":"https://api.github.com/repos/massmutual/edap-workflows/comments{/number}","issue_comment_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments{/number}","contents_url":"https://api.github.com/repos/massmutual/edap-workflows/contents/{+path}","compare_url":"https://api.github.com/repos/massmutual/edap-workflows/compare/{base}...{head}","merges_url":"https://api.github.com/repos/massmutual/edap-workflows/merges","archive_url":"https://api.github.com/repos/massmutual/edap-workflows/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/massmutual/edap-workflows/downloads","issues_url":"https://api.github.com/repos/massmutual/edap-workflows/issues{/number}","pulls_url":"https://api.github.com/repos/massmutual/edap-workflows/pulls{/number}","milestones_url":"https://api.github.com/repos/massmutual/edap-workflows/milestones{/number}","notifications_url":"https://api.github.com/repos/massmutual/edap-workflows/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/massmutual/edap-workflows/labels{/name}","releases_url":"https://api.github.com/repos/massmutual/edap-workflows/releases{/id}","deployments_url":"https://api.github.com/repos/massmutual/edap-workflows/deployments","created_at":"2022-03-11T13:48:58Z","updated_at":"2022-04-08T17:13:33Z","pushed_at":"2022-04-09T15:59:06Z","git_url":"git://github.com/massmutual/edap-workflows.git","ssh_url":"git@github.com:massmutual/edap-workflows.git","clone_url":"https://github.com/massmutual/edap-workflows.git","svn_url":"https://github.com/massmutual/edap-workflows","homepage":null,"size":255,"stargazers_count":1,"watchers_count":1,"language":"Makefile","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":7,"license":null,"allow_forking":false,"is_template":false,"topics":[],"visibility":"internal","forks":0,"open_issues":7,"watchers":1,"default_branch":"main"}},"base":{"label":"massmutual:main","ref":"main","sha":"86fdcf7df259f91fb87be09e7f09a095b27236bc","user":{"login":"massmutual","id":13539447,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEzNTM5NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/13539447?v=4","gravatar_id":"","url":"https://api.github.com/users/massmutual","html_url":"https://github.com/massmutual","followers_url":"https://api.github.com/users/massmutual/followers","following_url":"https://api.github.com/users/massmutual/following{/other_user}","gists_url":"https://api.github.com/users/massmutual/gists{/gist_id}","starred_url":"https://api.github.com/users/massmutual/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/massmutual/subscriptions","organizations_url":"https://api.github.com/users/massmutual/orgs","repos_url":"https://api.github.com/users/massmutual/repos","events_url":"https://api.github.com/users/massmutual/events{/privacy}","received_events_url":"https://api.github.com/users/massmutual/received_events","type":"Organization","site_admin":false},"repo":{"id":468768125,"node_id":"R_kgDOG_DVfQ","name":"edap-workflows","full_name":"massmutual/edap-workflows","private":true,"owner":{"login":"massmutual","id":13539447,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEzNTM5NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/13539447?v=4","gravatar_id":"","url":"https://api.github.com/users/massmutual","html_url":"https://github.com/massmutual","followers_url":"https://api.github.com/users/massmutual/followers","following_url":"https://api.github.com/users/massmutual/following{/other_user}","gists_url":"https://api.github.com/users/massmutual/gists{/gist_id}","starred_url":"https://api.github.com/users/massmutual/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/massmutual/subscriptions","organizations_url":"https://api.github.com/users/massmutual/orgs","repos_url":"https://api.github.com/users/massmutual/repos","events_url":"https://api.github.com/users/massmutual/events{/privacy}","received_events_url":"https://api.github.com/users/massmutual/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/massmutual/edap-workflows","description":null,"fork":false,"url":"https://api.github.com/repos/massmutual/edap-workflows","forks_url":"https://api.github.com/repos/massmutual/edap-workflows/forks","keys_url":"https://api.github.com/repos/massmutual/edap-workflows/keys{/key_id}","collaborators_url":"https://api.github.com/repos/massmutual/edap-workflows/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/massmutual/edap-workflows/teams","hooks_url":"https://api.github.com/repos/massmutual/edap-workflows/hooks","issue_events_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/events{/number}","events_url":"https://api.github.com/repos/massmutual/edap-workflows/events","assignees_url":"https://api.github.com/repos/massmutual/edap-workflows/assignees{/user}","branches_url":"https://api.github.com/repos/massmutual/edap-workflows/branches{/branch}","tags_url":"https://api.github.com/repos/massmutual/edap-workflows/tags","blobs_url":"https://api.github.com/repos/massmutual/edap-workflows/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/massmutual/edap-workflows/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/massmutual/edap-workflows/git/refs{/sha}","trees_url":"https://api.github.com/repos/massmutual/edap-workflows/git/trees{/sha}","statuses_url":"https://api.github.com/repos/massmutual/edap-workflows/statuses/{sha}","languages_url":"https://api.github.com/repos/massmutual/edap-workflows/languages","stargazers_url":"https://api.github.com/repos/massmutual/edap-workflows/stargazers","contributors_url":"https://api.github.com/repos/massmutual/edap-workflows/contributors","subscribers_url":"https://api.github.com/repos/massmutual/edap-workflows/subscribers","subscription_url":"https://api.github.com/repos/massmutual/edap-workflows/subscription","commits_url":"https://api.github.com/repos/massmutual/edap-workflows/commits{/sha}","git_commits_url":"https://api.github.com/repos/massmutual/edap-workflows/git/commits{/sha}","comments_url":"https://api.github.com/repos/massmutual/edap-workflows/comments{/number}","issue_comment_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments{/number}","contents_url":"https://api.github.com/repos/massmutual/edap-workflows/contents/{+path}","compare_url":"https://api.github.com/repos/massmutual/edap-workflows/compare/{base}...{head}","merges_url":"https://api.github.com/repos/massmutual/edap-workflows/merges","archive_url":"https://api.github.com/repos/massmutual/edap-workflows/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/massmutual/edap-workflows/downloads","issues_url":"https://api.github.com/repos/massmutual/edap-workflows/issues{/number}","pulls_url":"https://api.github.com/repos/massmutual/edap-workflows/pulls{/number}","milestones_url":"https://api.github.com/repos/massmutual/edap-workflows/milestones{/number}","notifications_url":"https://api.github.com/repos/massmutual/edap-workflows/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/massmutual/edap-workflows/labels{/name}","releases_url":"https://api.github.com/repos/massmutual/edap-workflows/releases{/id}","deployments_url":"https://api.github.com/repos/massmutual/edap-workflows/deployments","created_at":"2022-03-11T13:48:58Z","updated_at":"2022-04-08T17:13:33Z","pushed_at":"2022-04-09T15:59:06Z","git_url":"git://github.com/massmutual/edap-workflows.git","ssh_url":"git@github.com:massmutual/edap-workflows.git","clone_url":"https://github.com/massmutual/edap-workflows.git","svn_url":"https://github.com/massmutual/edap-workflows","homepage":null,"size":255,"stargazers_count":1,"watchers_count":1,"language":"Makefile","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":7,"license":null,"allow_forking":false,"is_template":false,"topics":[],"visibility":"internal","forks":0,"open_issues":7,"watchers":1,"default_branch":"main"}},"_links":{"self":{"href":"https://api.github.com/repos/massmutual/edap-workflows/pulls/63"},"html":{"href":"https://github.com/massmutual/edap-workflows/pull/63"},"issue":{"href":"https://api.github.com/repos/massmutual/edap-workflows/issues/63"},"comments":{"href":"https://api.github.com/repos/massmutual/edap-workflows/issues/63/comments"},"review_comments":{"href":"https://api.github.com/repos/massmutual/edap-workflows/pulls/63/comments"},"review_comment":{"href":"https://api.github.com/repos/massmutual/edap-workflows/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/massmutual/edap-workflows/pulls/63/commits"},"statuses":{"href":"https://api.github.com/repos/massmutual/edap-workflows/statuses/67f0d26f6ef94cc14385a13671b18997ebc9a071"}},"author_association":"COLLABORATOR","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"blocked","merged_by":null,"comments":6,"review_comments":0,"maintainer_can_modify":false,"commits":7,"additions":31,"deletions":28,"changed_files":6}
2022-04-09T16:00:13.4600915Z https://api.github.com:443 "GET /repos/massmutual/edap-workflows/pulls/63/merge HTTP/1.1" 404 None
2022-04-09T16:00:13.4610633Z GET https://api.github.com/repos/massmutual/edap-workflows/pulls/63/merge {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 404 {'server': 'GitHub.com', 'date': 'Sat, 09 Apr 2022 16:00:13 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '15000', 'x-ratelimit-remaining': '14958', 'x-ratelimit-reset': '1649523559', 'x-ratelimit-used': '42', 'x-ratelimit-resource': 'core', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '0', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'vary': 'Accept-Encoding, Accept, X-Requested-With', 'content-encoding': 'gzip', 'x-github-request-id': '07C2:027C:146C89:2BC3B7:6251AD8D'} {"message":"Not Found","documentation_url":"https://docs.github.com/rest/reference/pulls#check-if-a-pull-request-has-been-merged"}
2022-04-09T16:00:13.6141546Z https://api.github.com:443 "GET /repos/massmutual/edap-workflows/issues/63/comments HTTP/1.1" 200 None
2022-04-09T16:00:13.6276492Z GET https://api.github.com/repos/massmutual/edap-workflows/issues/63/comments {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Sat, 09 Apr 2022 16:00:13 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"8ae58123a4b2960e4a571eb705d16545d3447284f5ace51f3b84e1eb637b4ffa"', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '15000', 'x-ratelimit-remaining': '14957', 'x-ratelimit-reset': '1649523559', 'x-ratelimit-used': '43', 'x-ratelimit-resource': 'core', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '0', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '07C2:027C:146C8E:2BC3BE:6251AD8D'} [{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094007510","html_url":"https://github.com/massmutual/edap-workflows/pull/63#issuecomment-1094007510","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","id":1094007510,"node_id":"IC_kwDOG_DVfc5BNTrW","user":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"created_at":"2022-04-09T13:07:57Z","updated_at":"2022-04-09T15:59:28Z","author_association":"NONE","body":"@massmutual-edap used commitizen to check if the version will bump:\n\nCurrent version:\n```console\n❯ cz version --project\n1.13.5\n```\n\nBump dry-run:\n```console\n❯ cz bump --dry-run --yes\nbump: version 1.13.5 → 1.13.6\ntag to create: v1.13.6\nincrement detected: PATCH\n```","reactions":{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094007510/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094013773","html_url":"https://github.com/massmutual/edap-workflows/pull/63#issuecomment-1094013773","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","id":1094013773,"node_id":"IC_kwDOG_DVfc5BNVNN","user":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"created_at":"2022-04-09T13:16:31Z","updated_at":"2022-04-09T13:45:13Z","author_association":"NONE","body":"## [MegaLinter](https://megalinter.github.io) status: :warning: [**WARNING**](https://github.com/massmutual/edap-workflows/actions/runs/2140820997)\n\n|  Descriptor   |                                              Linter                                              |Files|Fixed|                                    Errors                                    |Elapsed time|\n|---------------|--------------------------------------------------------------------------------------------------|-----|----:|------------------------------------------------------------------------------|------------|\n|✅ COPYPASTE   |[jscpd](https://megalinter.github.io/descriptors/copypaste_jscpd)                                 |yes  |     |no                                                                            |0.69s       |\n|✅ CREDENTIALS |[secretlint](https://megalinter.github.io/descriptors/credentials_secretlint)                     |yes  |     |no                                                                            |0.74s       |\n|✅ EDITORCONFIG|[editorconfig-checker](https://megalinter.github.io/descriptors/editorconfig_editorconfig_checker)|5    |     |                                                                             0|1.2s        |\n|✅ GIT         |[git_diff](https://megalinter.github.io/descriptors/git_git_diff)                                 |yes  |     |no                                                                            |0.01s       |\n|✅ JSON        |[eslint-plugin-jsonc](https://megalinter.github.io/descriptors/json_eslint_plugin_jsonc)          |1    |    0|                                                                             0|1.01s       |\n|✅ JSON        |[jsonlint](https://megalinter.github.io/descriptors/json_jsonlint)                                |1    |     |                                                                             0|0.26s       |\n|✅ JSON        |[prettier](https://megalinter.github.io/descriptors/json_prettier)                                |1    |    0|                                                                             0|0.6s        |\n|✅ JSON        |[v8r](https://megalinter.github.io/descriptors/json_v8r)                                          |1    |     |                                                                             0|1.66s       |\n|:warning: SPELL|[cspell](https://megalinter.github.io/descriptors/spell_cspell)                                   |5    |     |[**25**](https://github.com/massmutual/edap-workflows/actions/runs/2140820997)|2.13s       |\n|✅ SPELL       |[misspell](https://megalinter.github.io/descriptors/spell_misspell)                               |5    |    0|                                                                             0|0.06s       |\n|✅ YAML        |[prettier](https://megalinter.github.io/descriptors/yaml_prettier)                                |4    |    0|                                                                             0|0.85s       |\n|✅ YAML        |[v8r](https://megalinter.github.io/descriptors/yaml_v8r)                                          |4    |     |                                                                             0|2.4s        |\n|✅ YAML        |[yamllint](https://megalinter.github.io/descriptors/yaml_yamllint)                                |4    |     |                                                                             0|0.25s       |\n\n\nSee errors details in [**artifact MegaLinter reports** on CI Job page](https://github.com/massmutual/edap-workflows/actions/runs/2140820997)\n_Set `VALIDATE_ALL_CODEBASE: true` in mega-linter.yml to validate all sources, not only the diff_\n","reactions":{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094013773/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094020174","html_url":"https://github.com/massmutual/edap-workflows/pull/63#issuecomment-1094020174","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","id":1094020174,"node_id":"IC_kwDOG_DVfc5BNWxO","user":{"login":"Andrew-Sheridan","id":50179676,"node_id":"MDQ6VXNlcjUwMTc5Njc2","avatar_url":"https://avatars.githubusercontent.com/u/50179676?v=4","gravatar_id":"","url":"https://api.github.com/users/Andrew-Sheridan","html_url":"https://github.com/Andrew-Sheridan","followers_url":"https://api.github.com/users/Andrew-Sheridan/followers","following_url":"https://api.github.com/users/Andrew-Sheridan/following{/other_user}","gists_url":"https://api.github.com/users/Andrew-Sheridan/gists{/gist_id}","starred_url":"https://api.github.com/users/Andrew-Sheridan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Andrew-Sheridan/subscriptions","organizations_url":"https://api.github.com/users/Andrew-Sheridan/orgs","repos_url":"https://api.github.com/users/Andrew-Sheridan/repos","events_url":"https://api.github.com/users/Andrew-Sheridan/events{/privacy}","received_events_url":"https://api.github.com/users/Andrew-Sheridan/received_events","type":"User","site_admin":false},"created_at":"2022-04-09T13:25:27Z","updated_at":"2022-04-09T13:25:27Z","author_association":"COLLABORATOR","body":"When the cspell config is a json file at the default location megalinter does not fail.\r\n\r\n```text\r\n### Processed [SPELL] files\r\n- Using [cspell v5.19.2] https://megalinter.github.io/v5/descriptors/spell_cspell\r\n- MegaLinter key: [SPELL_CSPELL]\r\n- Rules config: [/github/workspace/.cspell.json]\r\n[cspell] .cspell.json\r\n[cspell] .github/workflows/lint-megalinter-all.yaml\r\n[cspell] .github/workflows/lint-megalinter-documentation.yaml\r\n[cspell] .github/workflows/lint-megalinter-java.yaml\r\n[cspell] .github/workflows/lint-megalinter-python.yaml\r\n--Error detail:\r\n\r\n1/5 ./.cspell.json ...\r\n1/5 ./.cspell.json 590.59ms\r\n\r\n2/5 ./.github/workflows/lint-megalinter-all.yaml ...\r\n2/5 ./.github/workflows/lint-megalinter-all.yaml 128.77ms X\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:35:25 - Unknown word (PYLINT)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:81:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:82:14 - Unknown word (ISORT)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:82:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:83:14 - Unknown word (MYPY)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:83:32 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:124:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:129:56 - Unknown word (noreply)\r\n\r\n3/5 ./.github/workflows/lint-megalinter-documentation.yaml ...\r\n3/5 ./.github/workflows/lint-megalinter-documentation.yaml 42.25ms X\r\n/github/workspace/.github/workflows/lint-megalinter-documentation.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-documentation.yaml:119:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-documentation.yaml:124:56 - Unknown word (noreply)\r\n\r\n4/5 ./.github/workflows/lint-megalinter-java.yaml ...\r\n4/5 ./.github/workflows/lint-megalinter-java.yaml 52.60ms X\r\n/github/workspace/.github/workflows/lint-megalinter-java.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-java.yaml:119:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-java.yaml:124:56 - Unknown word (noreply)\r\n\r\n5/5 ./.github/workflows/lint-megalinter-python.yaml ...\r\n5/5 ./.github/workflows/lint-megalinter-python.yaml 42.79ms X\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:35:25 - Unknown word (PYLINT)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:81:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:82:14 - Unknown word (ISORT)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:82:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:83:14 - Unknown word (MYPY)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:83:32 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:124:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:129:56 - Unknown word (noreply)\r\nCSpell: Files checked: 5, Issues found: 24 in 4 files\r\n\r\n✅ Linted [SPELL] files with [cspell]: Found 24 non blocking error(s) - (1.58s)\r\n[Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/WARNING-SPELL_CSPELL.log\r\n```\r\n^ 100% of the misspellings are in workflow related files, and are all bs.\r\n- im going to ignore them\r\n\r\n","reactions":{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094020174/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094022430","html_url":"https://github.com/massmutual/edap-workflows/pull/63#issuecomment-1094022430","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","id":1094022430,"node_id":"IC_kwDOG_DVfc5BNXUe","user":{"login":"Andrew-Sheridan","id":50179676,"node_id":"MDQ6VXNlcjUwMTc5Njc2","avatar_url":"https://avatars.githubusercontent.com/u/50179676?v=4","gravatar_id":"","url":"https://api.github.com/users/Andrew-Sheridan","html_url":"https://github.com/Andrew-Sheridan","followers_url":"https://api.github.com/users/Andrew-Sheridan/followers","following_url":"https://api.github.com/users/Andrew-Sheridan/following{/other_user}","gists_url":"https://api.github.com/users/Andrew-Sheridan/gists{/gist_id}","starred_url":"https://api.github.com/users/Andrew-Sheridan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Andrew-Sheridan/subscriptions","organizations_url":"https://api.github.com/users/Andrew-Sheridan/orgs","repos_url":"https://api.github.com/users/Andrew-Sheridan/repos","events_url":"https://api.github.com/users/Andrew-Sheridan/events{/privacy}","received_events_url":"https://api.github.com/users/Andrew-Sheridan/received_events","type":"User","site_admin":false},"created_at":"2022-04-09T13:28:34Z","updated_at":"2022-04-09T13:28:34Z","author_association":"COLLABORATOR","body":"Our first megalinter success!\r\n\r\nAlso:\r\n```text\r\nUnable to get version for linter [eslint-plugin-jsonc]\r\n/usr/bin/npm list eslint-plugin-jsonc returned output: (1) /github/workspace\r\n└── (empty)\r\n\r\n\r\nUnable to extract version with regex re.compile('\\\\d+(\\\\.\\\\d+)+') from ERROR\r\n\r\n### Processed [JSON] files\r\n- Using [eslint-plugin-jsonc vERROR] https://megalinter.github.io/v5/descriptors/json_eslint_plugin_jsonc\r\n- MegaLinter key: [JSON_ESLINT_PLUGIN_JSONC]\r\n- Rules config: [.eslintrc-json.json]\r\n[eslint-plugin-jsonc] .cspell.json\r\n✅ Linted [JSON] files with [eslint-plugin-jsonc] successfully - (0.96s)\r\n[Text Reporter] Generated TEXT report: /github/workspace/report/linters_logs/SUCCESS-JSON_ESLINT_PLUGIN_JSONC.log\r\n```","reactions":{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094022430/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094035299","html_url":"https://github.com/massmutual/edap-workflows/pull/63#issuecomment-1094035299","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","id":1094035299,"node_id":"IC_kwDOG_DVfc5BNadj","user":{"login":"Andrew-Sheridan","id":50179676,"node_id":"MDQ6VXNlcjUwMTc5Njc2","avatar_url":"https://avatars.githubusercontent.com/u/50179676?v=4","gravatar_id":"","url":"https://api.github.com/users/Andrew-Sheridan","html_url":"https://github.com/Andrew-Sheridan","followers_url":"https://api.github.com/users/Andrew-Sheridan/followers","following_url":"https://api.github.com/users/Andrew-Sheridan/following{/other_user}","gists_url":"https://api.github.com/users/Andrew-Sheridan/gists{/gist_id}","starred_url":"https://api.github.com/users/Andrew-Sheridan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Andrew-Sheridan/subscriptions","organizations_url":"https://api.github.com/users/Andrew-Sheridan/orgs","repos_url":"https://api.github.com/users/Andrew-Sheridan/repos","events_url":"https://api.github.com/users/Andrew-Sheridan/events{/privacy}","received_events_url":"https://api.github.com/users/Andrew-Sheridan/received_events","type":"User","site_admin":false},"created_at":"2022-04-09T13:48:38Z","updated_at":"2022-04-09T13:48:38Z","author_association":"COLLABORATOR","body":"Running `mkdir -p report/.github/linters` prior to megalinter prevents it from failing when it writes its proposed cspell file.\r\n\r\nUnfortunately having the config at `.github/linter/cspell.json` makes cspell not respect the rules\r\n```text\r\n### Processed [SPELL] files\r\n- Using [cspell v5.19.2] https://megalinter.github.io/v5/descriptors/spell_cspell\r\n- MegaLinter key: [SPELL_CSPELL]\r\n- Rules config: [/github/workspace/.github/linters/cspell.json]\r\n[cspell] .github/linters/cspell.json\r\n[cspell] .github/workflows/lint-megalinter-all.yaml\r\n[cspell] .github/workflows/lint-megalinter-documentation.yaml\r\n[cspell] .github/workflows/lint-megalinter-java.yaml\r\n[cspell] .github/workflows/lint-megalinter-python.yaml\r\n--Error detail:\r\n\r\n1/5 ./.github/linters/cspell.json ...\r\n1/5 ./.github/linters/cspell.json 736.50ms\r\n\r\n2/5 ./.github/workflows/lint-megalinter-all.yaml ...\r\n2/5 ./.github/workflows/lint-megalinter-all.yaml [188](https://github.com/massmutual/edap-workflows/runs/5955034987?check_suite_focus=true#step:5:188).94ms X\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:35:25 - Unknown word (PYLINT)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:81:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:82:14 - Unknown word (ISORT)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:82:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:83:14 - Unknown word (MYPY)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:83:32 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:124:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-all.yaml:129:56 - Unknown word (noreply)\r\n\r\n3/5 ./.github/workflows/lint-megalinter-documentation.yaml ...\r\n3/5 ./.github/workflows/lint-megalinter-documentation.yaml 93.67ms X\r\n/github/workspace/.github/workflows/lint-megalinter-documentation.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-documentation.yaml:96:14 - Unknown word (mkdir)\r\n/github/workspace/.github/workflows/lint-megalinter-documentation.yaml:120:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-documentation.yaml:125:56 - Unknown word (noreply)\r\n\r\n4/5 ./.github/workflows/lint-megalinter-java.yaml ...\r\n4/5 ./.github/workflows/lint-megalinter-java.yaml 74.71ms X\r\n/github/workspace/.github/workflows/lint-megalinter-java.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-java.yaml:119:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-java.yaml:124:56 - Unknown word (noreply)\r\n\r\n5/5 ./.github/workflows/lint-megalinter-python.yaml ...\r\n5/5 ./.github/workflows/lint-megalinter-python.yaml 81.41ms X\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:13:42 - Unknown word (KUBERNETES)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:35:25 - Unknown word (PYLINT)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:81:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:82:14 - Unknown word (ISORT)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:82:33 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:83:14 - Unknown word (MYPY)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:83:32 - Unknown word (pyproject)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:124:15 - Unknown word (stefanzweifel)\r\n/github/workspace/.github/workflows/lint-megalinter-python.yaml:129:56 - Unknown word (noreply)\r\nCSpell: Files checked: 5, Issues found: 25 in 4 files\r\n```","reactions":{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094035299/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094041619","html_url":"https://github.com/massmutual/edap-workflows/pull/63#issuecomment-1094041619","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","id":1094041619,"node_id":"IC_kwDOG_DVfc5BNcAT","user":{"login":"Andrew-Sheridan","id":50179676,"node_id":"MDQ6VXNlcjUwMTc5Njc2","avatar_url":"https://avatars.githubusercontent.com/u/50179676?v=4","gravatar_id":"","url":"https://api.github.com/users/Andrew-Sheridan","html_url":"https://github.com/Andrew-Sheridan","followers_url":"https://api.github.com/users/Andrew-Sheridan/followers","following_url":"https://api.github.com/users/Andrew-Sheridan/following{/other_user}","gists_url":"https://api.github.com/users/Andrew-Sheridan/gists{/gist_id}","starred_url":"https://api.github.com/users/Andrew-Sheridan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Andrew-Sheridan/subscriptions","organizations_url":"https://api.github.com/users/Andrew-Sheridan/orgs","repos_url":"https://api.github.com/users/Andrew-Sheridan/repos","events_url":"https://api.github.com/users/Andrew-Sheridan/events{/privacy}","received_events_url":"https://api.github.com/users/Andrew-Sheridan/received_events","type":"User","site_admin":false},"created_at":"2022-04-09T14:18:02Z","updated_at":"2022-04-09T14:18:02Z","author_association":"COLLABORATOR","body":"I have opened an issue to resolve this: https://github.com/megalinter/megalinter/issues/1397","reactions":{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094041619/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]
2022-04-09T16:00:14.1364314Z https://api.github.com:443 "PATCH /repos/massmutual/edap-workflows/issues/comments/1094013773 HTTP/1.1" 200 None
2022-04-09T16:00:14.1494173Z PATCH https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094013773 {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python', 'Content-Type': 'application/json'} {"body": "## [MegaLinter](https://megalinter.github.io) status: :warning: [**WARNING**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)\n\n|  Descriptor   |                                              Linter                                              |Files|Fixed|                                    Errors                                    |Elapsed time|\n|---------------|--------------------------------------------------------------------------------------------------|-----|----:|------------------------------------------------------------------------------|------------|\n|\u2705 COPYPASTE   |[jscpd](https://megalinter.github.io/descriptors/copypaste_jscpd)                                 |yes  |     |no                                                                            |0.76s       |\n|\u2705 CREDENTIALS |[secretlint](https://megalinter.github.io/descriptors/credentials_secretlint)                     |yes  |     |no                                                                            |0.87s       |\n|\u2705 EDITORCONFIG|[editorconfig-checker](https://megalinter.github.io/descriptors/editorconfig_editorconfig_checker)|5    |     |                                                                             0|0.74s       |\n|\u2705 GIT         |[git_diff](https://megalinter.github.io/descriptors/git_git_diff)                                 |yes  |     |no                                                                            |0.01s       |\n|\u2705 JSON        |[eslint-plugin-jsonc](https://megalinter.github.io/descriptors/json_eslint_plugin_jsonc)          |1    |    0|                                                                             0|1.03s       |\n|\u2705 JSON        |[jsonlint](https://megalinter.github.io/descriptors/json_jsonlint)                                |1    |     |                                                                             0|0.27s       |\n|\u2705 JSON        |[prettier](https://megalinter.github.io/descriptors/json_prettier)                                |1    |    0|                                                                             0|0.54s       |\n|\u2705 JSON        |[v8r](https://megalinter.github.io/descriptors/json_v8r)                                          |1    |     |                                                                             0|1.53s       |\n|:warning: SPELL|[cspell](https://megalinter.github.io/descriptors/spell_cspell)                                   |5    |     |[**25**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)|1.98s       |\n|\u2705 SPELL       |[misspell](https://megalinter.github.io/descriptors/spell_misspell)                               |5    |    0|                                                                             0|0.07s       |\n|\u2705 YAML        |[prettier](https://megalinter.github.io/descriptors/yaml_prettier)                                |4    |    0|                                                                             0|0.82s       |\n|\u2705 YAML        |[v8r](https://megalinter.github.io/descriptors/yaml_v8r)                                          |4    |     |                                                                             0|2.32s       |\n|\u2705 YAML        |[yamllint](https://megalinter.github.io/descriptors/yaml_yamllint)                                |4    |     |                                                                             0|0.25s       |\n\n\nSee errors details in [**artifact MegaLinter reports** on CI Job page](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)\n_Set `VALIDATE_ALL_CODEBASE: true` in mega-linter.yml to validate all sources, not only the diff_\n"} ==> 200 {'server': 'GitHub.com', 'date': 'Sat, 09 Apr 2022 16:00:14 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"cd7a38a4ddab8a7cd7d494df2f96260d4befeb0de463df426f0186c0db7a78ac"', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '15000', 'x-ratelimit-remaining': '14956', 'x-ratelimit-reset': '1649523559', 'x-ratelimit-used': '44', 'x-ratelimit-resource': 'core', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '0', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '07C2:027C:146C93:2BC3C8:6251AD8D'} {"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094013773","html_url":"https://github.com/massmutual/edap-workflows/pull/63#issuecomment-1094013773","issue_url":"https://api.github.com/repos/massmutual/edap-workflows/issues/63","id":1094013773,"node_id":"IC_kwDOG_DVfc5BNVNN","user":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"created_at":"2022-04-09T13:16:31Z","updated_at":"2022-04-09T16:00:13Z","author_association":"NONE","body":"## [MegaLinter](https://megalinter.github.io) status: :warning: [**WARNING**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)\n\n|  Descriptor   |                                              Linter                                              |Files|Fixed|                                    Errors                                    |Elapsed time|\n|---------------|--------------------------------------------------------------------------------------------------|-----|----:|------------------------------------------------------------------------------|------------|\n|✅ COPYPASTE   |[jscpd](https://megalinter.github.io/descriptors/copypaste_jscpd)                                 |yes  |     |no                                                                            |0.76s       |\n|✅ CREDENTIALS |[secretlint](https://megalinter.github.io/descriptors/credentials_secretlint)                     |yes  |     |no                                                                            |0.87s       |\n|✅ EDITORCONFIG|[editorconfig-checker](https://megalinter.github.io/descriptors/editorconfig_editorconfig_checker)|5    |     |                                                                             0|0.74s       |\n|✅ GIT         |[git_diff](https://megalinter.github.io/descriptors/git_git_diff)                                 |yes  |     |no                                                                            |0.01s       |\n|✅ JSON        |[eslint-plugin-jsonc](https://megalinter.github.io/descriptors/json_eslint_plugin_jsonc)          |1    |    0|                                                                             0|1.03s       |\n|✅ JSON        |[jsonlint](https://megalinter.github.io/descriptors/json_jsonlint)                                |1    |     |                                                                             0|0.27s       |\n|✅ JSON        |[prettier](https://megalinter.github.io/descriptors/json_prettier)                                |1    |    0|                                                                             0|0.54s       |\n|✅ JSON        |[v8r](https://megalinter.github.io/descriptors/json_v8r)                                          |1    |     |                                                                             0|1.53s       |\n|:warning: SPELL|[cspell](https://megalinter.github.io/descriptors/spell_cspell)                                   |5    |     |[**25**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)|1.98s       |\n|✅ SPELL       |[misspell](https://megalinter.github.io/descriptors/spell_misspell)                               |5    |    0|                                                                             0|0.07s       |\n|✅ YAML        |[prettier](https://megalinter.github.io/descriptors/yaml_prettier)                                |4    |    0|                                                                             0|0.82s       |\n|✅ YAML        |[v8r](https://megalinter.github.io/descriptors/yaml_v8r)                                          |4    |     |                                                                             0|2.32s       |\n|✅ YAML        |[yamllint](https://megalinter.github.io/descriptors/yaml_yamllint)                                |4    |     |                                                                             0|0.25s       |\n\n\nSee errors details in [**artifact MegaLinter reports** on CI Job page](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)\n_Set `VALIDATE_ALL_CODEBASE: true` in mega-linter.yml to validate all sources, not only the diff_\n","reactions":{"url":"https://api.github.com/repos/massmutual/edap-workflows/issues/comments/1094013773/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}
2022-04-09T16:00:14.1508352Z Posted Github comment: ## [MegaLinter](https://megalinter.github.io) status: :warning: [**WARNING**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)
2022-04-09T16:00:14.1508761Z 
2022-04-09T16:00:14.1509010Z |  Descriptor   |                                              Linter                                              |Files|Fixed|                                    Errors                                    |Elapsed time|
2022-04-09T16:00:14.1509998Z |---------------|--------------------------------------------------------------------------------------------------|-----|----:|------------------------------------------------------------------------------|------------|
2022-04-09T16:00:14.1511139Z |✅ COPYPASTE   |[jscpd](https://megalinter.github.io/descriptors/copypaste_jscpd)                                 |yes  |     |no                                                                            |0.76s       |
2022-04-09T16:00:14.1512045Z |✅ CREDENTIALS |[secretlint](https://megalinter.github.io/descriptors/credentials_secretlint)                     |yes  |     |no                                                                            |0.87s       |
2022-04-09T16:00:14.1512985Z |✅ EDITORCONFIG|[editorconfig-checker](https://megalinter.github.io/descriptors/editorconfig_editorconfig_checker)|5    |     |                                                                             0|0.74s       |
2022-04-09T16:00:14.1513881Z |✅ GIT         |[git_diff](https://megalinter.github.io/descriptors/git_git_diff)                                 |yes  |     |no                                                                            |0.01s       |
2022-04-09T16:00:14.1514751Z |✅ JSON        |[eslint-plugin-jsonc](https://megalinter.github.io/descriptors/json_eslint_plugin_jsonc)          |1    |    0|                                                                             0|1.03s       |
2022-04-09T16:00:14.1515616Z |✅ JSON        |[jsonlint](https://megalinter.github.io/descriptors/json_jsonlint)                                |1    |     |                                                                             0|0.27s       |
2022-04-09T16:00:14.1516430Z |✅ JSON        |[prettier](https://megalinter.github.io/descriptors/json_prettier)                                |1    |    0|                                                                             0|0.54s       |
2022-04-09T16:00:14.1517235Z |✅ JSON        |[v8r](https://megalinter.github.io/descriptors/json_v8r)                                          |1    |     |                                                                             0|1.53s       |
2022-04-09T16:00:14.1518164Z |:warning: SPELL|[cspell](https://megalinter.github.io/descriptors/spell_cspell)                                   |5    |     |[**25**](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)|1.98s       |
2022-04-09T16:00:14.1519084Z |✅ SPELL       |[misspell](https://megalinter.github.io/descriptors/spell_misspell)                               |5    |    0|                                                                             0|0.07s       |
2022-04-09T16:00:14.1519935Z |✅ YAML        |[prettier](https://megalinter.github.io/descriptors/yaml_prettier)                                |4    |    0|                                                                             0|0.82s       |
2022-04-09T16:00:14.1520757Z |✅ YAML        |[v8r](https://megalinter.github.io/descriptors/yaml_v8r)                                          |4    |     |                                                                             0|2.32s       |
2022-04-09T16:00:14.1521563Z |✅ YAML        |[yamllint](https://megalinter.github.io/descriptors/yaml_yamllint)                                |4    |     |                                                                             0|0.25s       |
2022-04-09T16:00:14.1521872Z 
2022-04-09T16:00:14.1521879Z 
2022-04-09T16:00:14.1522449Z See errors details in [**artifact MegaLinter reports** on CI Job page](https://github.com/massmutual/edap-workflows/actions/runs/2141166659)
2022-04-09T16:00:14.1523149Z _Set `VALIDATE_ALL_CODEBASE: true` in mega-linter.yml to validate all sources, not only the diff_
2022-04-09T16:00:14.1523421Z 
2022-04-09T16:00:14.1523770Z [GitHub Comment Reporter] Posted summary as comment on massmutual/edap-workflows #PR63
2022-04-09T16:00:14.1524226Z [Gitlab Comment Reporter] No Gitlab Token found, so skipped post of MR comment
2022-04-09T16:00:14.1524615Z Start updated Sources Reporter
2022-04-09T16:00:14.1525313Z Popen(['git', 'diff', '--abbrev=40', '--full-index', '-M', '--raw', '-z', '--no-color'], cwd=/github/workspace, universal_newlines=False, shell=None, istream=None)
2022-04-09T16:00:14.1583233Z Updated files :
2022-04-09T16:00:14.1583421Z 
2022-04-09T16:00:14.1583830Z [Updated Sources Reporter] No source file has been formatted or fixed
2022-04-09T16:00:14.1584757Z �[33m◬ Successfully linted all files, but with ignored errors�[0m
2022-04-09T16:00:14.1585125Z Cleared MegaLinter runtime config
2022-04-09T16:00:14.4213563Z ##[group]Run actions/upload-artifact@v3
2022-04-09T16:00:14.4213847Z with:
2022-04-09T16:00:14.4214092Z   name: MegaLinter reports
2022-04-09T16:00:14.4214382Z   path: report
mega-linter.log

2022-04-09T16:00:14.4214659Z   if-no-files-found: warn
2022-04-09T16:00:14.4214900Z env:
2022-04-09T16:00:14.4215329Z   GITHUB_TOKEN: ***
2022-04-09T16:00:14.4215561Z   APPLY_FIXES: all
2022-04-09T16:00:14.4215829Z   APPLY_FIXES_EVENT: pull_request
2022-04-09T16:00:14.4216110Z   APPLY_FIXES_MODE: commit
2022-04-09T16:00:14.4216379Z   FILTER_REGEX_EXCLUDE: (docs/|report/)
2022-04-09T16:00:14.4216668Z   PRINT_ALL_FILES: true
2022-04-09T16:00:14.4216927Z   SHOW_ELAPSED_TIME: true
2022-04-09T16:00:14.4217175Z   PRINT_ALPACA: false
2022-04-09T16:00:14.4217423Z   LOG_LEVEL: DEBUG
2022-04-09T16:00:14.4217684Z   VALIDATE_ALL_CODEBASE: false
2022-04-09T16:00:14.4217971Z   GITHUB_STATUS_REPORTER: true
2022-04-09T16:00:14.4218234Z   EMAIL_REPORTER: false
2022-04-09T16:00:14.4218525Z   CONFIG_REPORTER: false
2022-04-09T16:00:14.4218768Z   TAP_REPORTER: false
2022-04-09T16:00:14.4219413Z   ENABLE: BASH,ENV,JSON,MARKDOWN,YAML,ACTION,DOCKERFILE,EDITORCONFIG,KUBERNETES,CREDENTIALS,COPYPASTE,GIT,SPELL
2022-04-09T16:00:14.4220036Z   DISABLE: ACTION
2022-04-09T16:00:14.4220276Z   ENABLE_LINTERS: 
2022-04-09T16:00:14.4220502Z   DISABLE_LINTERS: 
2022-04-09T16:00:14.4220823Z   YAML_PRETTIER_CONFIG_FILE: .github/linters/prettier.yaml
2022-04-09T16:00:14.4221206Z   YAML_YAMLLINT_CONFIG_FILE: .github/linters/yamllint.yaml
2022-04-09T16:00:14.4221534Z   COPYPASTE_JSCPD_DISABLE_ERRORS: true
2022-04-09T16:00:14.4221839Z   SPELL_CSPELL_DISABLE_ERRORS: true
2022-04-09T16:00:14.4222166Z   SPELL_CSPELL_CONFIG_FILE: .github/linters/cspell.json
2022-04-09T16:00:14.4222463Z   MEGALINTER_CONFIG: 
2022-04-09T16:00:14.4222710Z ##[endgroup]
2022-04-09T16:00:14.5080741Z Multiple search paths detected. Calculating the least common ancestor of all paths
2022-04-09T16:00:14.5084531Z The least common ancestor is /home/runner/work/edap-workflows/edap-workflows. This will be the root directory of the artifact
2022-04-09T16:00:14.5085210Z With the provided path, there will be 15 files uploaded
2022-04-09T16:00:14.5090114Z Starting artifact upload
2022-04-09T16:00:14.5091388Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging
2022-04-09T16:00:14.5092251Z Artifact name is valid!
2022-04-09T16:00:14.5718753Z Container for artifact "MegaLinter reports" successfully created. Starting upload of file(s)
2022-04-09T16:00:15.3756527Z Total size of all the files uploaded is 18993 bytes
2022-04-09T16:00:15.3759349Z File upload process has finished. Finalizing the artifact upload
2022-04-09T16:00:15.4088200Z Artifact has been finalized. All files have been successfully uploaded!
2022-04-09T16:00:15.4089355Z 
2022-04-09T16:00:15.4089856Z The raw size of all the files that were specified for upload is 126882 bytes
2022-04-09T16:00:15.4090656Z The size of all the files that were uploaded is 18993 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage
2022-04-09T16:00:15.4091128Z 
2022-04-09T16:00:15.4092214Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 
2022-04-09T16:00:15.4092796Z 
2022-04-09T16:00:15.4093051Z Artifact MegaLinter reports has been successfully uploaded!
2022-04-09T16:00:15.4337819Z Post job cleanup.
2022-04-09T16:00:15.5879732Z [command]/usr/bin/git version
2022-04-09T16:00:15.5955617Z git version 2.35.1
2022-04-09T16:00:15.5999108Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-04-09T16:00:15.6058534Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-04-09T16:00:15.6439932Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-04-09T16:00:15.6484663Z http.https://github.com/.extraheader
2022-04-09T16:00:15.6500878Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2022-04-09T16:00:15.6553192Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2022-04-09T16:00:15.7103963Z Cleaning up orphan processes

@Andrew-Sheridan
Copy link
Author

Andrew-Sheridan commented Apr 9, 2022

Hmm I noticed this in the logs, not sure if it is related:

2022-04-09T16:00:05.3405041Z Linter version command: ['/usr/bin/npm', 'list', 'eslint-plugin-jsonc']
2022-04-09T16:00:06.0328973Z Linter version result: 1 /github/workspace
2022-04-09T16:00:06.0329839Z └── (empty)
2022-04-09T16:00:06.0330030Z 
2022-04-09T16:00:06.0330037Z 
2022-04-09T16:00:06.0330357Z Unable to get version for linter [eslint-plugin-jsonc]
2022-04-09T16:00:06.0330979Z /usr/bin/npm list eslint-plugin-jsonc returned output: (1) /github/workspace
2022-04-09T16:00:06.0331484Z └── (empty)
2022-04-09T16:00:06.0331884Z 
2022-04-09T16:00:06.0331890Z 
2022-04-09T16:00:06.0332288Z Unable to extract version with regex re.compile('\\d+(\\.\\d+)+') from ERROR

Looks similar to #845

@nvuillam
Copy link
Member

nvuillam commented Apr 9, 2022

Such error in not related :)

It seems that you proposition with os.makedirs would do the job, would you like to make a pull request ? :)

@andrewasheridan
Copy link
Contributor

Sure, I can make that PR.

I’m not sure it will resolve the first issue - cspell does not appear to be respecting the config. All the files it found errors in are ignored in the config. If the config is at the default location the files are correctly ignored.

@nvuillam
Copy link
Member

nvuillam commented Apr 9, 2022

As you can see in the log, your config file is called ... maybe it's a cspell issue , something like it does not understand absolute paths in -c argument ?

2022-04-09T16:00:04.8382432Z [cspell] command: ['cspell', '-c', '/github/workspace/.github/linters/cspell.json', '/github/workspace/.github/linters/cspell.json', '/github/workspace/.github/workflows/lint-megalinter-all.yaml', '/github/workspace/.github/workflows/lint-megalinter-documentation.yaml', '/github/workspace/.github/workflows/lint-megalinter-java.yaml', '/github/workspace/.github/workflows/lint-megalinter-python.yaml'] 2022-04-09T16:00:04.8393820Z [cspell] CWD: /github/workspace

@andrewasheridan
Copy link
Contributor

andrewasheridan commented Apr 9, 2022

Hmmm.

I think I will play around with the cspell cli locally and open an issue upstream at https://github.com/streetsidesoftware/cspell if I need to.

edit: oh yeah both @Andrew-Sheridan and @andrewasheridan are me.

  • can’t fork into my work account

@github-actions
Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity.
It will be closed in 14 days if no further activity occurs.
Thank you for your contributions.

If you think this issue should stay open, please remove the O: stale 🤖 label or comment on the issue.

@github-actions github-actions bot added the O: stale 🤖 This issue or pull request is stale, it will be closed if there is no activity label May 10, 2022
@nvuillam nvuillam removed the O: stale 🤖 This issue or pull request is stale, it will be closed if there is no activity label May 10, 2022
@github-actions
Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity.
It will be closed in 14 days if no further activity occurs.
Thank you for your contributions.

If you think this issue should stay open, please remove the O: stale 🤖 label or comment on the issue.

@github-actions github-actions bot added the O: stale 🤖 This issue or pull request is stale, it will be closed if there is no activity label Jun 10, 2022
@MRDGH2821
Copy link

I had to put this in the mega linter config -

# Excludes cspell file itself
SPELL_MISSPELL_FILTER_REGEX_EXCLUDE: cspell.

So that it will ignore all types of cspell config files, because the linter reported errors in the config itself.
(My cspell config is in the root of the directory)

@Kurt-von-Laven
Copy link
Collaborator

Do you have a lot of banned words in your configs? Misspell tends to lean heavily towards avoiding false positives, so I am slightly surprised you had to filter out the CSpell config.

@MRDGH2821
Copy link

This is my config

And no I do not have lot of banned words as per verbal english usage.

But I do have 71 words which are correct in the context of the project.

I found out the actual cause btw - there is Ther word in cspell config, which misspell was correcting it to There
Due to which cspell reported Ther as a misspell while scanning.

I saw that misspell linter executed before cspell


By this I come to a realisation that in my situation config is loading properly, but I had entirely different issue. And my issue is not relevant with this issue. Sorry my bad 😅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
O: stale 🤖 This issue or pull request is stale, it will be closed if there is no activity
Projects
None yet
Development

No branches or pull requests

5 participants