Skip to content

Commit

Permalink
Merge pull request #9 from davidhcefx/patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
madnight committed Apr 29, 2024
1 parent c020d53 commit 32bf485
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/fetch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Fetch-upstream
on:
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:

jobs:
fetch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '5'

- name: Fetch upstream (dirty hacks)
run: |
mv .github .github~ # hide it from git
git reset --hard HEAD~3
git pull git://git.savannah.gnu.org/nano.git
mv .github~ .github
- name: Commit this script
run: |
git add .
git -c user.email='mail@beuke.org' -c user.name='Fabian Beuke' commit \
-m 'Merge pull request #9 from davidhcefx/patch-3'
git push --force

0 comments on commit 32bf485

Please sign in to comment.