Skip to content

Sync to upstream

Sync to upstream #423

Workflow file for this run

name: Sync to upstream
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
jobs:
fetch-upstream:
name: Fetch Upstream
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
ref: master
- name: Configure Git
run: |
git config --global user.email "dev-team@redis.com"
git config --global user.name "Dev team"
git remote add upstream https://github.com/disposable/disposable-email-domains.git
- name: Fetch and merge
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh repo sync RedisLabs/disposable-email-domains --source disposable/disposable-email-domains