mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-20 07:22:16 +03:00
12 lines
344 B
YAML
12 lines
344 B
YAML
|
# Adds comments to PR, based on which files are modified
|
||
|
name: PR Commenter
|
||
|
on: [ pull_request_target ]
|
||
|
jobs:
|
||
|
pr-comment:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: exercism/pr-commenter-action@v1.2.0
|
||
|
with:
|
||
|
github-token: ${{ github.BOT_GITHUB_TOKEN }}
|
||
|
config-file: .github/pr-auto-comments.yml
|