Unciv/.github/workflows/uncivbot.yml

19 lines
457 B
YAML
Raw Normal View History

2021-01-21 03:28:19 +07:00
name: UncivBot
on: [issue_comment]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
2021-01-21 03:30:09 +07:00
body: "${{ github.event.comment.body }}"
2021-01-21 03:28:19 +07:00
})