From 082e3ab3a37ffffd90619a0b7cda938cfed66a43 Mon Sep 17 00:00:00 2001 From: Serapheim Dimitropoulos Date: Wed, 9 Sep 2020 15:29:03 -0700 Subject: [PATCH] workflows: sync 6.0 with master --- .github/workflows/sync-with-master.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/sync-with-master.yml diff --git a/.github/workflows/sync-with-master.yml b/.github/workflows/sync-with-master.yml new file mode 100644 index 0000000..a6a7a44 --- /dev/null +++ b/.github/workflows/sync-with-master.yml @@ -0,0 +1,21 @@ +on: + push: + branches: + - master + schedule: + - cron: '0 0 * * *' + +jobs: + sync: + strategy: + matrix: + branch: + - 6.0/stage + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: delphix/actions/sync-with-master@master + with: + branch-to-sync: ${{ matrix.branch }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}