forked from NixOS/nixpkgs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b27ef3
commit eb4e1ff
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Rebase upstream | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
rebase: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- target: "nixpkgs-unstable" | ||
upstream: "nixpkgs-unstable" | ||
- target: "master" | ||
upstream: "master" | ||
|
||
steps: | ||
- uses: actions/cache@v4 | ||
with: | ||
path: .git | ||
key: ${{ matrix.target }}-git-${{ hashFiles('.git') }} | ||
restore-keys: | | ||
${{ matrix.target }}-git- | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ matrix.target }} | ||
fetch-depth: 0 | ||
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} | ||
|
||
- name: git setup | ||
run: | | ||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
- name: fetch upstream | ||
run: | | ||
# might already be there if the cache was used | ||
git remote add upstream https://github.com/NixOS/nixpkgs.git || true | ||
git fetch --no-tags --prune --no-recurse-submodules --depth 2000 upstream ${{ matrix.upstream }} | ||
- name: rebase | ||
run: | | ||
git rebase upstream/${{ matrix.upstream }} | ||
- name: push | ||
run: | | ||
git push --force-with-lease origin ${{ matrix.target }} | ||
- name: collect garbage | ||
run: | | ||
git gc |