-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36124 from appsmithorg/release
05/09 Daily Promotion
- Loading branch information
Showing
81 changed files
with
780 additions
and
427 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
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 |
---|---|---|
|
@@ -14,26 +14,26 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
ref: release # Checkout the release branch | ||
fetch-depth: 0 | ||
|
||
- name: Fetch all branches | ||
run: git fetch origin pg | ||
- name: Set Git config values | ||
run: | | ||
git config pull.rebase false | ||
git config user.email "[email protected]" | ||
git config user.name "Automated Github Action" | ||
- name: Checkout pg branch | ||
run: git checkout pg | ||
|
||
- name: Merge release to pg | ||
id: merge_commits | ||
run: | | ||
PG_HEAD=$(git rev-parse pg) | ||
RELEASE_HEAD=$(git rev-parse release) | ||
echo "PG_HEAD=$PG_HEAD" | ||
echo "RELEASE_HEAD=$RELEASE_HEAD" | ||
# Checkout the pg branch | ||
git checkout pg | ||
# Attempt to merge release into pg | ||
if ! git merge release; then | ||
echo "Merge conflict detected during merge" | ||
|
@@ -42,7 +42,6 @@ jobs: | |
CONFLICTING_COMMIT=$(git log -1 --pretty=format:"%H") | ||
echo "CONFLICTING_COMMIT=$CONFLICTING_COMMIT" >> $GITHUB_ENV | ||
git merge --abort | ||
echo "MERGE_CONFLICT=true" >> $GITHUB_ENV | ||
else | ||
echo "MERGE_CONFLICT=false" >> $GITHUB_ENV | ||
|
@@ -68,6 +67,8 @@ jobs: | |
# This unwieldy horror of a sed command, converts standard Markdown links to Slack's unwieldy link syntax. | ||
slack_message="$(echo "$message" | sed -E 's/\[([^]]+)\]\(([^)]+)\)/<\2|\1>/g')" | ||
echo "$slack_message" | ||
# This is the ChannelId of the proj postgres channel. | ||
body="$(jq -nc \ | ||
--arg channel C06Q3A97USE \ | ||
|
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
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
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.