Current Behavior
Looks like there is a syntax error in .github/config.yml. The first content line (line 18) is indented with 3 spaces, setting the block's indentation level to 3. But the subsequent lines are indented with 2 spaces resulting in a syntax error.
Expected Behavior
Lines 19-24 should be indented with the same number of spaces.
To Reproduce
Run python3 -c "import yaml; yaml.safe_load(open('.github/config.yml')); print('Valid YAML')". You should run into a ParserError
Contributor Guide and Resources
Current Behavior
Looks like there is a syntax error in
.github/config.yml. The first content line (line 18) is indented with 3 spaces, setting the block's indentation level to 3. But the subsequent lines are indented with 2 spaces resulting in a syntax error.Expected Behavior
Lines 19-24 should be indented with the same number of spaces.
To Reproduce
Run
python3 -c "import yaml; yaml.safe_load(open('.github/config.yml')); print('Valid YAML')". You should run into aParserErrorContributor Guide and Resources