mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-23 21:04:36 -05:00
feat(tools): autoclose specific python file prs (#56376)
This commit is contained in:
committed by
GitHub
parent
a3e6a3516e
commit
d6ce939f50
7
.github/workflows/github-autoclose.yml
vendored
7
.github/workflows/github-autoclose.yml
vendored
@@ -21,7 +21,12 @@ jobs:
|
||||
});
|
||||
if (
|
||||
files.data.length !== 1 ||
|
||||
files.data[0].filename !== ".gitignore"
|
||||
(files.data[0].filename !== ".gitignore" &&
|
||||
// We've had four PRs make this same (irrelevant) change already.
|
||||
!(files.data[0].filename === "664ef4623946e65e18d59764.md" &&
|
||||
files.data[0].patch.includes("return re.sub('(?<!\d)1', '', equation_string.strip('+'))")
|
||||
)
|
||||
)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user