Skip to content

Commit f537743

Browse files
committed
Auto-generated commit
1 parent 6aed795 commit f537743

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/.keepalive

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-11-01T00:44:55.932Z
1+
2022-11-03T20:46:03.928Z

.github/workflows/productionize.yml

+21
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,13 @@ jobs:
219219
git config merge.theirs.driver 'cat %B > %A'
220220
GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
221221
222+
# Copy files from `production` branch if necessary:
223+
git checkout origin/production -- .
224+
if [ -n "$(git status --porcelain)" ]; then
225+
git add -A
226+
git commit -m "Auto-generated commit"
227+
fi
228+
222229
# If `deno` does not exist, create `deno` branch:
223230
- name: 'If `deno` does not exist, create `deno` branch'
224231
if: ${{ steps.deno-branch-exists.outputs.remote-exists == false }}
@@ -385,6 +392,13 @@ jobs:
385392
git config merge.theirs.driver 'cat %B > %A'
386393
GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
387394
395+
# Copy files from `production` branch if necessary:
396+
git checkout origin/production -- .
397+
if [ -n "$(git status --porcelain)" ]; then
398+
git add -A
399+
git commit -m "Auto-generated commit"
400+
fi
401+
388402
# If `umd` does not exist, create `umd` branch:
389403
- name: 'If `umd` does not exist, create `umd` branch'
390404
if: ${{ steps.umd-branch-exists.outputs.remote-exists == false }}
@@ -549,6 +563,13 @@ jobs:
549563
git config merge.theirs.driver 'cat %B > %A'
550564
GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
551565
566+
# Copy files from `production` branch if necessary:
567+
git checkout origin/production -- .
568+
if [ -n "$(git status --porcelain)" ]; then
569+
git add -A
570+
git commit -m "Auto-generated commit"
571+
fi
572+
552573
# If `esm` does not exist, create `esm` branch:
553574
- name: 'If `esm` does not exist, create `esm` branch'
554575
if: ${{ steps.esm-branch-exists.outputs.remote-exists == false }}

0 commit comments

Comments
 (0)