Browse Source

add issue.yml

pull/4214/head
neil 2 years ago
parent
commit
8a1f038a80
  1. 18
      .github/workflows/issue.yml

18
.github/workflows/issue.yml

@ -0,0 +1,18 @@
name: "Update issues"
on:
issues:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Please provode the log with `--debug 2` if this is a bug report.'
})
Loading…
Cancel
Save