mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
This caches the virtual environment so we don't have to download it every time (the cache can be cleared from the repository > Actions > Caches (on the left). We also split black formatting into a separate workflow. This means we can run black ONLY when *.py files are changed. It also means all other testing jobs don't need to _also_ check formatting.
20 lines
561 B
YAML
20 lines
561 B
YAML
name: Closed issue comment
|
|
on:
|
|
issues:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
add-comment:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Did we solve your problem?
|
|
uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae
|
|
with:
|
|
issue-number: ${{ github.event.issue.number }}
|
|
body: |
|
|
Don't forget to [star](https://github.com/Textualize/textual) the repository!
|
|
|
|
Follow [@textualizeio](https://twitter.com/textualizeio) for Textual updates.
|