Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/bot_pr_info_message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: leapp bot - PR info message
on:
pull_request:


jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: mshick/add-pr-comment@v1
with:
# the message to print
message: "Thank you for contributing to the Leapp project!\
\n\n
Please note that every PR needs to comply with the [Leapp Guidelines](https://github.com/oamg/leapp-guidelines), pass tests and linter check before it can be merged.\
\n\n
If you want to re-run tests or request review, you can use following commands as a comment:\
\n
- `leapp-ci build` runs unit tests\
\n
- `please review` notifies leapp developers of review request\
\n
- `e2e tests` runs unit tests and end-to-end tests (OAMG members only)"

# a github token for API access
repo-token: ${{ secrets.GITHUB_TOKEN }}
# allow messages to be repeated
allow-repeats: false