Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando committed Nov 21, 2024
0 parents commit f2c54ce
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Sync Fork

on:
schedule:
# every hour
- cron: "0 * * * *"
workflow_dispatch:

jobs:
sync:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: |
git pull
git switch master
git remote add -f upstream https://github.com/microsoft/winget-pkgs.git
git rebase upstream/master
git push origin master
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# winget-pkgs

This is a synced fork of https://github.com/microsoft/winget-pkgs.

Check [.github/workflows/sync.yml](https://github.com/stellar/winget-pkgs) for
details. The [master](https://github.com/stellar/winget-pkgs/tree/master) is the
main branch.

0 comments on commit f2c54ce

Please sign in to comment.