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: README.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,37 @@ If a `.tool-versions` file does not exist, or doesn't have versions specified, w
72
72
- `poetry`- Default to latest version.
73
73
- `python`- Default to version 3.11.
74
74
75
+
## Publishing Task Output
76
+
77
+
Tasks can optionally publish markdown output that will appear in both the GitHub job summary and as an expandable section in PR comments. This is useful for displaying test results, coverage reports, or other structured output.
78
+
79
+
### How It Works
80
+
81
+
To publish output, your poe task should check for the `GITHUB_STEP_SUMMARY` environment variable and write markdown content to it:
82
+
83
+
```shell
84
+
# In your poe task (pyproject.toml or poe_tasks.toml)
0 commit comments