mirror of https://github.com/Lissy93/dashy.git
🤖 Starts with the PR auto-commenter script
This commit is contained in:
parent
6bb2bbb18b
commit
23441d87f4
|
@ -0,0 +1,17 @@
|
|||
comment:
|
||||
on-update: recreate
|
||||
header: |
|
||||
Thank you for contributing to Dashy! ✨
|
||||
footer: |
|
||||
---
|
||||
> I'm a bot, and this is an automated comment 🤖
|
||||
snippets:
|
||||
- id: docs-changes
|
||||
files:
|
||||
- '*.md'
|
||||
- '**/*.md'
|
||||
body: |
|
||||
When making changes to the documentation, be sure to double check that:
|
||||
- Link and images URLs properly resolve
|
||||
- Your spelling and grammar is correct
|
||||
- Any markdown formatting is valid
|
|
@ -0,0 +1,11 @@
|
|||
# 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
|
Loading…
Reference in New Issue