Sync to upstream #404
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |