I'm seeing an odd failure in my PR: ```Error: The ...
# development
b
I'm seeing an odd failure in my PR:
Copy code
Error: The template is not valid. .github/workflows/test.yaml (Line: 80, Col: 14): hashFiles('pants/3rdparty/python/**, pants.toml') failed. Fail to hash files under directory '/home/runner/work/pants/pants'
https://github.com/pantsbuild/pants/runs/5393619892?check_suite_focus=true
f
looks like github fixed the
hashFiles
function in Actions workflows to not mute errors: https://github.com/actions/runner/commit/460c32a3378ef36a6507c3cede3b3abc5d495f9f
so maybe that call to
hashFiles
has always been wrong?
maybe the path should be
3rdparty/python/**
and not
pants/3rdparty/python/**
?
it would need to be fixed in
build-support/bin/generate_github_workflows.py
b
good to know im about to be AFK a few hours, so someone else is welcome to pick it up 🙂
f
landed