Skip to content

postmortem 0.1.3

postmortem 0.1.3 #17

Workflow file for this run

on:
pull_request_target:
types: [opened]
permissions:
pull-requests: write
jobs:
rtd:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const {repo, issue} = context;
const {number} = issue;
github.rest.issues.createComment({
issue_number: number,
owner: repo.owner,
repo: repo.repo,
body: `> View Docs on [ReadTheDocs](https://urljsf--${number}.org.readthedocs.build/en/${number})`
});