mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
github: refactor update
CI workflow
- Rename workflow to simply "update" - Drop the DeterminateSystems/update-flake-lock action - Instead use `nix flake update --commit-lock-file` - Also use `generate-files`'s `--commit` option - Use peter-evans/create-pull-request to open a PR
This commit is contained in:
parent
7e3d629bb0
commit
abc409c16f
1 changed files with 79 additions and 18 deletions
97
.github/workflows/update.yml
vendored
97
.github/workflows/update.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: update-flake-lock
|
name: update
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: # allows manual triggering
|
workflow_dispatch: # allows manual triggering
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -25,15 +25,21 @@ jobs:
|
||||||
branch: "nixos-24.05"
|
branch: "nixos-24.05"
|
||||||
- selectedBranch: "nixos-24.05"
|
- selectedBranch: "nixos-24.05"
|
||||||
branch: main
|
branch: main
|
||||||
|
|
||||||
name: Update the flake inputs and generate options
|
name: Update the flake inputs and generate options
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 40
|
timeout-minutes: 40
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
ssh-key: ${{ secrets.CI_UPDATE_SSH_KEY }}
|
||||||
ref: "${{ matrix.branch }}"
|
ref: ${{ matrix.branch }}
|
||||||
|
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v26
|
uses: cachix/install-nix-action@v26
|
||||||
|
@ -41,19 +47,74 @@ jobs:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-unstable
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Update flake.lock
|
- name: Configure git
|
||||||
id: update
|
|
||||||
uses: DeterminateSystems/update-flake-lock@v21
|
|
||||||
with:
|
|
||||||
pr-title: "Update flake.lock (${{ matrix.branch }})"
|
|
||||||
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
||||||
branch: "update_flake_lock_action-${{ matrix.branch }}"
|
|
||||||
|
|
||||||
# TODO: do in one checkout + push the flake.lock update & the re-generation of the files
|
|
||||||
- name: Update autogenerated files
|
|
||||||
run: |
|
run: |
|
||||||
git checkout update_flake_lock_action-${{ matrix.branch }}
|
git config user.name 'github-actions[bot]'
|
||||||
nix run .#generate-files
|
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
|
||||||
git add ./generated
|
|
||||||
git commit -m "generated: Update files"
|
- name: Update flake.lock
|
||||||
git push
|
id: flake_lock
|
||||||
|
run: |
|
||||||
|
old=$(git show --no-patch --format=%h)
|
||||||
|
nix flake update --commit-lock-file
|
||||||
|
new=$(git show --no-patch --format=%h)
|
||||||
|
if [ "$old" != "$new" ]; then
|
||||||
|
echo "body<<EOF" >> "$GITHUB_OUTPUT"
|
||||||
|
git show --no-patch --format=%b >> "$GITHUB_OUTPUT"
|
||||||
|
echo "EOF" >> "$GITHUB_OUTPUT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Update autogenerated files
|
||||||
|
id: generate
|
||||||
|
run: |
|
||||||
|
old=$(git show --no-patch --format=%h)
|
||||||
|
nix run .#generate-files -- --commit
|
||||||
|
new=$(git show --no-patch --format=%h)
|
||||||
|
if [ "$old" != "$new" ]; then
|
||||||
|
summary=$(git show --no-patch --format=%s)
|
||||||
|
echo "summary=$summary" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "body<<EOF" >> "$GITHUB_OUTPUT"
|
||||||
|
git show --no-patch --format=%b >> "$GITHUB_OUTPUT"
|
||||||
|
echo "EOF" >> "$GITHUB_OUTPUT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Create Pull Request
|
||||||
|
id: pr
|
||||||
|
uses: peter-evans/create-pull-request@v6
|
||||||
|
with:
|
||||||
|
branch: update/${{ matrix.branch }}
|
||||||
|
base: ${{ matrix.branch }}
|
||||||
|
delete-branch: true
|
||||||
|
team-reviewers: |
|
||||||
|
nix-community/nixvim
|
||||||
|
title: |
|
||||||
|
[${{ matrix.branch }}] Update flake.lock & generated files
|
||||||
|
body: |
|
||||||
|
## Flake lockfile
|
||||||
|
```
|
||||||
|
${{ steps.flake_lock.outputs.body || 'No changes' }}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Generate
|
||||||
|
${{ steps.generate.outputs.body || steps.generate.outputs.summary || 'No changes' }}
|
||||||
|
|
||||||
|
- name: Print summary
|
||||||
|
if: ${{ steps.pr.outputs.pull-request-number }}
|
||||||
|
run: |
|
||||||
|
num="${{ steps.pr.outputs.pull-request-number }}"
|
||||||
|
pr_url="${{ steps.pr.outputs.pull-request-url }}"
|
||||||
|
pr_branch="${{ steps.pr.outputs.pull-request-branch }}"
|
||||||
|
head="${{ steps.pr.outputs.pull-request-head-sha }}"
|
||||||
|
operation="${{ steps.pr.outputs.pull-request-operation }}"
|
||||||
|
|
||||||
|
# stdout
|
||||||
|
echo "${head:0:6} pushed to ${pr_branch}"
|
||||||
|
echo "${pr} was ${operation}."
|
||||||
|
|
||||||
|
# markdown summary
|
||||||
|
echo "## ${{ matrix.branch }}" >> $GITHUB_STEP_SUMMARY
|
||||||
|
echo >> $GITHUB_STEP_SUMMARY
|
||||||
|
echo "\`${head:0:6}\` pushed to \`${pr_branch}\`" >> $GITHUB_STEP_SUMMARY
|
||||||
|
echo >> $GITHUB_STEP_SUMMARY
|
||||||
|
echo "[#${num}](${pr_url}) was ${operation}." >> $GITHUB_STEP_SUMMARY
|
||||||
|
echo >> $GITHUB_STEP_SUMMARY
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue