From 2d5aa85b36c8a723b469b13ed5f519ed58b0b86b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 May 2023 02:27:53 +0000 Subject: [PATCH 1/7] build: update Browserslist db --- yarn.lock | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 0dda0d92..0a4e2148 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1420,15 +1420,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001370, caniuse-lite@^1.0.30001400: - version "1.0.30001473" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001473.tgz" - integrity sha512-ewDad7+D2vlyy+E4UJuVfiBsU69IL+8oVmTuZnH5Q6CIUbxNfI50uVpRHbUPDD6SUaN2o0Lh4DhTrvLG/Tn1yg== - -caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464: - version "1.0.30001478" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001478.tgz#0ef8a1cf8b16be47a0f9fc4ecfc952232724b32a" - integrity sha512-gMhDyXGItTHipJj2ApIvR+iVB5hd0KP3svMWWXDvZOmjzJJassGLMfxRkQCSYgGd2gtdL/ReeiyvMSFD1Ss6Mw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001370, caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464: + version "1.0.30001481" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz" + integrity sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ== caseless@~0.12.0: version "0.12.0" From 4994bba729f43912841a3c29517d0c37698aed50 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 1 May 2023 11:53:05 +0530 Subject: [PATCH 2/7] Release PR --- .github/workflows/release-pr.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release-pr.yml diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml new file mode 100644 index 00000000..ddc5a3d0 --- /dev/null +++ b/.github/workflows/release-pr.yml @@ -0,0 +1,17 @@ +name: Create release pull request +on: + push: + branches: + - develop +jobs: + productionPromotion: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + ref: develop + - name: Create Pull Request + uses: peter-evans/create-pull-request@v5 + with: + base: main + branch: develop From 52523ca6c24a95eb674ff8db783c69ef40ea4061 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 1 May 2023 11:54:30 +0530 Subject: [PATCH 3/7] Change branch --- .github/workflows/release-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index ddc5a3d0..5b7f9c54 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -14,4 +14,4 @@ jobs: uses: peter-evans/create-pull-request@v5 with: base: main - branch: develop + branch: release From 6655a2c320739634de67ecea504022cc1a2292e0 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 1 May 2023 11:56:47 +0530 Subject: [PATCH 4/7] Update release-pr --- .github/workflows/release-pr.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index 5b7f9c54..7da60f57 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -9,9 +9,12 @@ jobs: steps: - uses: actions/checkout@v3 with: - ref: develop + ref: main + - name: Reset promotion branch + run: | + git fetch origin develop:develop + git reset --hard develop - name: Create Pull Request uses: peter-evans/create-pull-request@v5 with: - base: main branch: release From 85c3ddd365670bb9995395e39040c706122cfd61 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 1 May 2023 11:57:59 +0530 Subject: [PATCH 5/7] change release branch name --- .github/workflows/release-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index 7da60f57..d1a66ab4 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -17,4 +17,4 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v5 with: - branch: release + branch: release-promotion From 90407fe0d1821a99ef89f7933ec8630609c597b5 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 1 May 2023 11:59:52 +0530 Subject: [PATCH 6/7] Change branch --- .github/workflows/release-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index d1a66ab4..43738a8e 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v3 with: - ref: main + ref: master - name: Reset promotion branch run: | git fetch origin develop:develop From 448b47a8e345aa92b93487367edeec6c90eba783 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 1 May 2023 12:00:53 +0530 Subject: [PATCH 7/7] Fix title --- .github/workflows/release-pr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index 43738a8e..ef85fe2a 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -18,3 +18,4 @@ jobs: uses: peter-evans/create-pull-request@v5 with: branch: release-promotion + title: Release live editor