Skip to content

PyCafe Playground Link #19

PyCafe Playground Link

PyCafe Playground Link #19

Workflow file for this run

---
name: PyCafe Sandbox Link
on:
workflow_run:
workflows: [Build]
types:
- completed
jobs:
create-status:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create PyCafe status link
run: |
pip install PyGithub
python .github/pycafe-create-status.py ${{ github.event.workflow_run.head_sha }} ${{ github.event.workflow_run.id }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}