Improve dark mode support #120
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment PR | |
on: | |
pull_request_target: | |
permissions: | |
pull-requests: write | |
jobs: | |
comment-pr: | |
runs-on: ubuntu-latest | |
name: Comment PR | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Comment PR | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: | | |
Thank you for making this pull request. | |
Did you know? You can try it on Binder: [![Binder:lab](https://img.shields.io/badge/binder-jupyterlab-0172B2.svg)](https://mybinder.org/v2/gh/${{ github.event.pull_request.head.repo.full_name }}/${{ github.event.pull_request.head.ref }}?urlpath=lab/tree/docs/quick_start.md). | |
Also, the version of ITables developed in this PR can be installed with `pip`: | |
``` | |
pip install git+${{ github.event.pull_request.head.repo.clone_url }}@${{ github.event.pull_request.head.ref }} | |
``` | |
(this requires `nodejs`, see more at [Developing ITables](https://mwouts.github.io/itables/developing.html)) | |
comment_tag: binder_link |