Skip to content

Add CHANGELOG.md management and update CI release workflow #226

Add CHANGELOG.md management and update CI release workflow

Add CHANGELOG.md management and update CI release workflow #226

name: Auto comment on new issues
on:
issues:
types: [opened]
jobs:
comment:
if: |
github.event.issue.author_association != 'OWNER' &&
github.event.issue.author_association != 'MEMBER' &&
github.event.issue.author_association != 'COLLABORATOR'
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 :)"
})