-
Notifications
You must be signed in to change notification settings - Fork 23
44 lines (36 loc) · 1.16 KB
/
pr-update-changes.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: PR - Update plugins in new PR
on:
workflow_dispatch:
pull_request_target:
branches:
- main
jobs:
sync-changes:
runs-on: ubuntu-latest
name: Update plugins
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.head_ref }}
- name: Install nix
uses: cachix/install-nix-action@V27
with:
github_access_token: ${{ github.token }}
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Clean up Manifest
uses: NixNeovim/NixNeovimPlugins/.github/actions/cleanup@main
- name: Update new plugins
run: |
nix run .#update-vim-plugins -- update --ansi
env:
GITHUB_TOKEN: ${{ github.token }}
SOURCEHUT_TOKEN: ${{ secrets.SOURCEHUT_TOKEN }}
- name: Clean up Manifest after update
uses: NixNeovim/NixNeovimPlugins/.github/actions/cleanup@main
- name: Commit changes
uses: NixNeovim/NixNeovimPlugins/.github/actions/ci-commit@main
with:
msg: 'Update plugins'