mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9e9dee43ac
* implement SMTP notifier startup check * check dial, starttls, auth, mail from, rcpt to, reset, and quit * log the error on failure * implement mock * misc optimizations, adjustments, and refactoring * implement validate_skip config option * fix comments to end with period * fix suites that used smtp notifier without a smtp container * add docs * add file notifier startup check * move file mode into const.go * disable gosec linting on insecureskipverify since it's intended, warned, and discouraged * minor PR commentary adjustment * apply suggestions from code review Co-Authored-By: Amir Zarrinkafsh <nightah@me.com>
31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
// PR commentary for Authelia branch based contributions
|
|
on('pull_request.opened')
|
|
.filter(
|
|
context =>
|
|
context.payload.pull_request.head.label.slice(0, 9) === 'authelia:'
|
|
)
|
|
.filter(
|
|
context =>
|
|
context.payload.pull_request.head.ref.slice(0, 11) !== 'dependabot/'
|
|
)
|
|
.comment(`## Artifacts
|
|
These changes are published for testing on Buildkite and DockerHub.
|
|
|
|
### Docker Container
|
|
* \`docker pull authelia/authelia:{{ pull_request.head.ref }}\``)
|
|
|
|
// PR commentary for third party based contributions
|
|
on('pull_request.opened')
|
|
.filter(
|
|
context =>
|
|
context.payload.pull_request.head.label.slice(0, 9) !== 'authelia:'
|
|
)
|
|
.comment(`Thanks for choosing to contribute. We lint all PR's with golangci-lint, autheliabot may add a review to your PR with some suggestions.
|
|
|
|
You are free to apply the changes if you're comfortable, alternatively you are welcome to ask a team member for advice.
|
|
|
|
## Artifacts
|
|
These changes once approved by a team member will be published for testing on Buildkite and DockerHub.
|
|
|
|
### Docker Container
|
|
* \`docker pull authelia/authelia:PR{{ pull_request.number }}\``) |