Skip to content

Commit

Permalink
Add a workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
haampie committed Sep 30, 2021
0 parents commit e99e97c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/mirror.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: mirror

on:
workflow_dispatch:
schedule:
- cron: '13 14 * * 0'


jobs:
bundle:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Add upstream
run: |
git remote add upstream https://git.savannah.gnu.org/git/config.git
git fetch upstream master
git push origin upstream/master:master

0 comments on commit e99e97c

Please sign in to comment.