Skip to content

Update add comments #86

Update add comments

Update add comments #86

name: PR Checklist
on:
pull_request:
types: [opened, labeled, unlabeled, edited]
workflow_dispatch:
inputs:
tag:
required: true
type: string
jobs:
setup:
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
steps:
- name: 🛎 Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: 🐍 Setting Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- run: |
python -m pip install --upgrade pip
pip install -r .github/requirements.txt
python .github/add-comment.py --token ${{ secrets.GITHUB_TOKEN }}