Skip to content

Use Conda environment instead of Python venv in Windows script based set-up (inside scripts/setup.ps1 ) #110

Use Conda environment instead of Python venv in Windows script based set-up (inside scripts/setup.ps1 )

Use Conda environment instead of Python venv in Windows script based set-up (inside scripts/setup.ps1 ) #110

name: Auto comment on new issues
on:
issues:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Add comment to issue
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: "👋 Thanks for opening this issue! The maintainers will review it shortly. Till then, do not open any PR. This is a strict rule we like to follow around here :)"
})