mirror of https://github.com/Lissy93/dashy.git
👷 Updates the PR auto comments
This commit is contained in:
parent
36a20621c8
commit
77847f4528
|
@ -1,17 +1,101 @@
|
|||
comment:
|
||||
on-update: recreate
|
||||
on-update: edit
|
||||
header: |
|
||||
Thank you for contributing to Dashy! ✨
|
||||
Hi {{ prAuthor }}! Thank you for contributing to Dashy! ✨
|
||||
footer: |
|
||||
---
|
||||
> I'm a bot, and this is an automated comment 🤖
|
||||
snippets:
|
||||
- id: docs-changes
|
||||
files:
|
||||
- '*.md'
|
||||
- '**/*.md'
|
||||
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
|
||||
|
||||
- id: vue-config
|
||||
files:
|
||||
- vue.config.js
|
||||
body: >
|
||||
You're making changes to the main Vue app config. Please test the app thoroughly,
|
||||
as any misconfigurations here may cause the app to stop functioning.
|
||||
|
||||
- id: server-entry
|
||||
files:
|
||||
- server.js
|
||||
body: >
|
||||
You're making changes to the main server entry point. Please test the app thoroughly,
|
||||
as any misconfigurations here may cause the app to stop functioning.
|
||||
|
||||
- id: dependency-changes
|
||||
files:
|
||||
- yarn.lock
|
||||
body: >
|
||||
When updating dependencies, take a moment to verify that there are not security
|
||||
issues associated with any added or modified packages. If adding a new dependency,
|
||||
ensure that it is totally necessary, and check the packages size is not too large,
|
||||
as this will increase overall bundle size.
|
||||
|
||||
- id: environmental-vars
|
||||
files: [ '.env', '*.env', '.env*' ]
|
||||
body: >
|
||||
You're making changes to the main server entry point. Please test the app thoroughly,
|
||||
as any misconfigurations here may cause the app to stop functioning.
|
||||
|
||||
- id: license
|
||||
files: [ 'LICENSE', '**/**/LICENSE*' ]
|
||||
body: >
|
||||
Dashy is licensed under MIT. Your modifying the license file, which shouldn't usually
|
||||
need to be changed. Please ensure that you intended to make this update before continuing.
|
||||
|
||||
- id: cname-file
|
||||
files:
|
||||
- CNAME
|
||||
body: >
|
||||
Are you sure you want to modify the CNAME file? This may stop the documentation
|
||||
website hosted on GitHub pages from working.
|
||||
|
||||
- id: git-ignore
|
||||
files:
|
||||
- .gitignore
|
||||
body: >
|
||||
When modifying the .gitignore, please do not remove any of the existing paths,
|
||||
as this may cause files and directories to be unintentionally committed to git
|
||||
|
||||
- id: netlify-file
|
||||
files:
|
||||
- netlify.toml
|
||||
body: >
|
||||
Please ensure you've tested the app on Netlify, so that the 1-Click deployment
|
||||
does not break, before merging these changes
|
||||
|
||||
- id: heroku-ignore
|
||||
files:
|
||||
- Procfile
|
||||
body: >
|
||||
Please ensure you've tested the app on Heroku, so that the 1-Click deployment
|
||||
does not break, before merging these changes
|
||||
|
||||
- id: ignored-dist
|
||||
files:
|
||||
- /dist
|
||||
body: >
|
||||
Please do not commit the built application to git. The contents of the dist
|
||||
directory will be generated after the app is compiled
|
||||
|
||||
- id: ignored-dependencies
|
||||
files:
|
||||
- /node_modules
|
||||
body: >
|
||||
Please do not commit dependencies to git. Node modules will be pulled down
|
||||
when yarn is run, prior to building the app
|
||||
|
||||
- id: code-owners
|
||||
files:
|
||||
- /.github/CODEOWNERS
|
||||
body: >
|
||||
Are you adding yourself as a code owner? Please specify the file path as specific
|
||||
as possible, and only assign yourself to files that you created and wish to help
|
||||
maintain (such as a language file, specific feature or widget).
|
||||
If the above is not met, your PR will be declined or modified.
|
||||
|
|
|
@ -9,3 +9,5 @@ jobs:
|
|||
with:
|
||||
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||
config-file: .github/pr-auto-comments.yml
|
||||
template-variables: |
|
||||
{ "prAuthor": "${{ github.event.pull_request.user.login }}" }
|
||||
|
|
Loading…
Reference in New Issue