-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/view-users-groups
# Conflicts: # frontend/web/components/pages/UsersAndPermissionsPage.tsx
- Loading branch information
Showing
562 changed files
with
30,048 additions
and
34,246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ Dockerfile | |
.ebignore | ||
.ebextensions | ||
.direnv | ||
.github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Report Docker Build status to PR | ||
description: Create or update PR comment related to Docker build | ||
|
||
inputs: | ||
image-tag: | ||
description: Full image tag | ||
required: false | ||
build-status: | ||
description: Build status in short format | ||
required: false | ||
security-report-status: | ||
description: Security report status in short format | ||
required: false | ||
|
||
runs: | ||
using: composite | ||
|
||
steps: | ||
- uses: peter-evans/find-comment@v3 | ||
id: find-comment | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body-includes: 'Docker builds report' | ||
|
||
- uses: chuhlomin/render-template@v1.4 | ||
if: ${{ !inputs.image-tag }} | ||
id: render-header | ||
with: | ||
template: .github/docker_build_comment_template.md | ||
|
||
- uses: peter-evans/create-or-update-comment@v4 | ||
if: ${{ !inputs.image-tag }} | ||
with: | ||
comment-id: ${{ steps.find-comment.outputs.comment-id }} | ||
edit-mode: replace | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: ${{ steps.render-header.outputs.result }} | ||
|
||
- uses: peter-evans/create-or-update-comment@v4 | ||
if: ${{ inputs.image-tag }} | ||
with: | ||
comment-id: ${{ steps.find-comment.outputs.comment-id }} | ||
edit-mode: append | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: > | ||
| `${{ inputs.image-tag }}` | ${{ inputs.build-status }} | ${{ inputs.security-report-status }} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{{ .message }} | ||
#### Docker builds report | ||
|
||
| Image | Build Status | Security report | | ||
| --------------- | ------------------ | --------------------------- | | ||
| {{ .imageTag }} | {{ .buildStatus }} | {{ .securityReportStatus }} | | ||
| Image | Build Status | Security report | | ||
| ----- | ------------ | --------------- | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Conventional Commit | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
|
||
jobs: | ||
conventional-commit: | ||
name: Conventional Commit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check PR Conventional Commit title | ||
uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
types: | # mirrors changelog-sections in the /release-please-config.json | ||
feat | ||
fix | ||
infra | ||
ci | ||
docs | ||
deps | ||
perf | ||
refactor | ||
test | ||
chore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.