Skip to content

Commit d97ca68

Browse files
Merge pull request #5764 from makeplane/preview
release: v0.23.0
2 parents 707570c + c92fe61 commit d97ca68

File tree

1,605 files changed

+50825
-30063
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,605 files changed

+50825
-30063
lines changed

Diff for: .env.example

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ PGDATA="/var/lib/postgresql/data"
88
REDIS_HOST="plane-redis"
99
REDIS_PORT="6379"
1010

11+
# RabbitMQ Settings
12+
RABBITMQ_HOST="plane-mq"
13+
RABBITMQ_PORT="5672"
14+
RABBITMQ_USER="plane"
15+
RABBITMQ_PASSWORD="plane"
16+
RABBITMQ_VHOST="plane"
17+
1118
# AWS Settings
1219
AWS_REGION=""
1320
AWS_ACCESS_KEY_ID="access-key"

Diff for: .eslintrc-staged.js

-59
This file was deleted.

Diff for: .eslintrc.js

-10
This file was deleted.

Diff for: .gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.sh text eol=lf

Diff for: .github/ISSUE_TEMPLATE/--bug-report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Bug report
22
description: Create a bug report to help us improve Plane
33
title: "[bug]: "
44
labels: [🐛bug]
5-
assignees: [srinivaspendem, pushya22]
5+
assignees: [vihar, pushya22]
66
body:
77
- type: markdown
88
attributes:

Diff for: .github/ISSUE_TEMPLATE/--feature-request.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Feature request
22
description: Suggest a feature to improve Plane
33
title: "[feature]: "
44
labels: [✨feature]
5-
assignees: [srinivaspendem, pushya22]
5+
assignees: [vihar, pushya22]
66
body:
77
- type: markdown
88
attributes:

Diff for: .github/workflows/build-aio-branch.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
outputs:
3333
gh_branch_name: ${{ steps.set_env_variables.outputs.TARGET_BRANCH }}
34+
flat_branch_name: ${{ steps.set_env_variables.outputs.FLAT_BRANCH_NAME }}
3435
gh_buildx_driver: ${{ steps.set_env_variables.outputs.BUILDX_DRIVER }}
3536
gh_buildx_version: ${{ steps.set_env_variables.outputs.BUILDX_VERSION }}
3637
gh_buildx_platforms: ${{ steps.set_env_variables.outputs.BUILDX_PLATFORMS }}
@@ -56,7 +57,7 @@ jobs:
5657
echo "BUILDX_PLATFORMS=linux/amd64" >> $GITHUB_OUTPUT
5758
echo "BUILDX_ENDPOINT=" >> $GITHUB_OUTPUT
5859
59-
if [ "${{ github.event.inputs.base_tag_name }}" != "" ]; then
60+
if [ "${{ github.event_name}}" == "workflow_dispatch" ] && [ "${{ github.event.inputs.base_tag_name }}" != "" ]; then
6061
echo "AIO_BASE_TAG=${{ github.event.inputs.base_tag_name }}" >> $GITHUB_OUTPUT
6162
elif [ "${{ env.TARGET_BRANCH }}" == "preview" ]; then
6263
echo "AIO_BASE_TAG=preview" >> $GITHUB_OUTPUT
@@ -78,6 +79,9 @@ jobs:
7879
echo "DO_SLIM_BUILD=false" >> $GITHUB_OUTPUT
7980
fi
8081
82+
FLAT_BRANCH_NAME=$(echo "${{ env.TARGET_BRANCH }}" | sed 's/[^a-zA-Z0-9]/-/g')
83+
echo "FLAT_BRANCH_NAME=$FLAT_BRANCH_NAME" >> $GITHUB_OUTPUT
84+
8185
- id: checkout_files
8286
name: Checkout Files
8387
uses: actions/checkout@v4
@@ -89,7 +93,7 @@ jobs:
8993
env:
9094
BUILD_TYPE: full
9195
AIO_BASE_TAG: ${{ needs.branch_build_setup.outputs.aio_base_tag }}
92-
AIO_IMAGE_TAGS: makeplane/plane-aio:full-${{ needs.branch_build_setup.outputs.gh_branch_name }}
96+
AIO_IMAGE_TAGS: makeplane/plane-aio:full-${{ needs.branch_build_setup.outputs.flat_branch_name }}
9397
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
9498
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
9599
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
@@ -132,7 +136,7 @@ jobs:
132136
tags: ${{ env.AIO_IMAGE_TAGS }}
133137
push: true
134138
build-args: |
135-
BUILD_TAG=${{ env.AIO_BASE_TAG }}
139+
BASE_TAG=${{ env.AIO_BASE_TAG }}
136140
BUILD_TYPE=${{env.BUILD_TYPE}}
137141
cache-from: type=gha
138142
cache-to: type=gha,mode=max
@@ -149,7 +153,7 @@ jobs:
149153
env:
150154
BUILD_TYPE: slim
151155
AIO_BASE_TAG: ${{ needs.branch_build_setup.outputs.aio_base_tag }}
152-
AIO_IMAGE_TAGS: makeplane/plane-aio:slim-${{ needs.branch_build_setup.outputs.gh_branch_name }}
156+
AIO_IMAGE_TAGS: makeplane/plane-aio:slim-${{ needs.branch_build_setup.outputs.flat_branch_name }}
153157
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
154158
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
155159
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
@@ -192,7 +196,7 @@ jobs:
192196
tags: ${{ env.AIO_IMAGE_TAGS }}
193197
push: true
194198
build-args: |
195-
BUILD_TAG=${{ env.AIO_BASE_TAG }}
199+
BASE_TAG=${{ env.AIO_BASE_TAG }}
196200
BUILD_TYPE=${{env.BUILD_TYPE}}
197201
cache-from: type=gha
198202
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)