mirror of
https://github.com/Textualize/rich.git
synced 2026-03-27 03:12:16 +00:00
24 lines
724 B
YAML
24 lines
724 B
YAML
name: issues
|
|
on:
|
|
issues:
|
|
types: [closed]
|
|
jobs:
|
|
add-comment:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Did I solve your problem?
|
|
uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae
|
|
with:
|
|
issue-number: ${{ github.event.issue.number }}
|
|
body: |
|
|
I hope I helped!
|
|
|
|
Consider [sponsoring](https://github.com/sponsors/willmcgugan) my work on Rich. I give tech support for free, in addition to maintaining Rich and Textual.
|
|
|
|
If you like using Rich, you might also enjoy [Textual](https://textual.textualize.io).
|
|
|
|
Will McGugan
|
|
|