mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
24 lines
687 B
YAML
24 lines
687 B
YAML
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 upgrade to the latest code and try again first. Maybe it's already fixed.
|
|
|
|
`acme.sh --upgrade`
|
|
|
|
If it's still not working, please provode the log with `--debug 2`, otherwise, nobody can help you.'
|
|
|
|
}) |