Skip to content

Commit

Permalink
Merge branch 'develop_pwa' into upstream_catchup_3.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Shailesh351 committed Aug 18, 2021
2 parents 7ab533e + c6ba9cf commit 69887e5
Show file tree
Hide file tree
Showing 249 changed files with 17,776 additions and 3,096 deletions.
1 change: 1 addition & 0 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ RUN groupadd -g 65533 -r rocketchat \
&& mkdir -p /app/uploads \
&& chown rocketchat:rocketchat /app/uploads \
&& apt-get update \
&& apt-get -y upgrade \
&& apt-get install -y --no-install-recommends fontconfig

# --chown requires Docker 17.12 and works only on Linux
Expand Down
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ ee/server/services/dist/**
!/.mocharc.js
!/client/.eslintrc.js
!/ee/client/.eslintrc.js
app/utils/client/lib/sha1.js
app/analytics/server/trackEvents.js
File renamed without changes.
37 changes: 37 additions & 0 deletions .github/workflows/auto_catchup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Upstream catchup from Rocketchat develop

on:
schedule:
- cron: '0 0 * * 1' #on every Monday

jobs:
catchup:
name: Upstream Catchup
runs-on: ubuntu-latest

steps:

- name: Catchup Info
run: |
echo "GITHUB_ACTION: $GITHUB_ACTION"
echo "GITHUB_ACTOR: $GITHUB_ACTOR"
echo "GITHUB_REF: $GITHUB_REF"
echo "github.event_name: ${{ github.event_name }}"
cat $GITHUB_EVENT_PATH
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Create Catchup PR
uses: shubhsherl/[email protected]
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
SOURCE_BRANCH: "master"
SOURCE_REPO: "RocketChat"
TARGET_BRANCH: "develop_pwa"
GITHUB_REPO: ${{github.repository}}
TITLE: "[Upstream Catchup] Merge RC:master to develop_pwa"
BODY: "Weekly Catchup PR to merge RC:master in develop_pwa."
DRAFT: "true"
Loading

0 comments on commit 69887e5

Please sign in to comment.