Postmortem 0.4.1 #52
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: Badges | |
on: | |
pull_request_target: | |
types: [opened] | |
permissions: | |
pull-requests: write | |
jobs: | |
binder: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add Binder/Lite PR comment | |
uses: actions/github-script@v6 | |
env: | |
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }} | |
PR_HEAD_USERREPO: ${{ github.event.pull_request.head.repo.full_name }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const PR_NUMBER = context.issue.number | |
const { PR_HEAD_REF, PR_HEAD_USERREPO } = process.env; | |
const RTD = `https://ipyforcegraph--${PR_NUMBER}.org.readthedocs.build/en/${PR_NUMBER}/_static/lab/index.html?path=_index.ipynb`; | |
const BH = `https://mybinder.org/v2/gh/${PR_HEAD_USERREPO}/${PR_HEAD_REF}?urlpath=lab/tree/examples/_index.ipynb`; | |
const LITE = `https://jupyterlite.rtfd.io/en/latest/_static/badge.svg`; | |
const BND = `https://mybinder.org/badge_logo.svg`; | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `Try it on [![](${LITE})](${RTD}) :arrow_left: ReadTheDocs or Binder :arrow_right: [![](${BND})](${BH})`, | |
}); |