Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3edb66c

Browse filesBrowse files
committed
Auto-generated commit
1 parent 6511df9 commit 3edb66c
Copy full SHA for 3edb66c

File tree

2 files changed

+22
-1
lines changed
Filter options

2 files changed

+22
-1
lines changed

‎.github/.keepalive

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-11-01T01:58:04.228Z
1+
2022-11-03T23:00:25.636Z

‎.github/workflows/productionize.yml

Copy file name to clipboardExpand all lines: .github/workflows/productionize.yml
+21Lines changed: 21 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.