You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/pull_request_template.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Closes #(issue_number)
17
17
### General
18
18
19
19
-[ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md)
20
-
-[ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable)
20
+
-[ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md) (if applicable)
21
21
-[ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable)
22
22
-[ ] I have performed a self-review of my own code
23
23
-[ ] My changes generate no new warnings
@@ -37,4 +37,5 @@ Closes #(issue_number)
37
37
38
38
### Testing (if applicable)
39
39
40
-
-[ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details.
40
+
-[ ] I have run `task check` to verify linters, typechecks, and tests pass
41
+
-[ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md#7-testing) for more details.
# Ignore errors here because we're going to add comments for them in the following steps before actually failing
32
-
run: make fix || true
28
+
run: task engine:fix || true
33
29
34
30
- name: Check for fixer changes
35
31
id: fixer_changes
@@ -60,24 +56,24 @@ jobs:
60
56
owner: context.repo.owner,
61
57
repo: context.repo.repo,
62
58
issue_number: context.issue.number,
63
-
body: "The Python code in your PR has formatting/linting issues. Consider running `make fix` locally or setting up your editor's Ruff integration to auto-format and lint your files as you go, or commit the suggested changes on this PR.",
59
+
body: "The Python code in your PR has formatting/linting issues. Consider running `task engine:fix` locally or setting up your editor's Ruff integration to auto-format and lint your files as you go, or commit the suggested changes on this PR.",
64
60
});
65
61
66
62
- name: Verify fixer changes are committed
67
63
if: steps.fixer_changes.outputs.changed == 'true'
68
64
run: |
69
65
if ! git diff --exit-code; then
70
66
echo "Fixes are out of date."
71
-
echo "Apply the reviewdog suggestions or run 'make fix' from engine/ and commit the updated files."
67
+
echo "Apply the reviewdog suggestions or run 'task engine:fix' from the repo root and commit the updated files."
0 commit comments