mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 00:45:17 -06:00
test workflow
This commit is contained in:
parent
f3c760e01f
commit
7a85a7aff4
2 changed files with 27 additions and 1 deletions
26
.github/workflows/inputs.yml
vendored
Normal file
26
.github/workflows/inputs.yml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
name: "Update Nix Flake Inputs"
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 10 1,14 * *"
|
||||||
|
jobs:
|
||||||
|
update:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v20
|
||||||
|
- name: Update flake inputs
|
||||||
|
id: update
|
||||||
|
uses: DeterminateSystems/update-flake-lock@v19
|
||||||
|
with:
|
||||||
|
pr-title: "chore: update flake.lock"
|
||||||
|
commit-msg: "chore: update flake.lock"
|
||||||
|
pr-reviewers: iofq
|
||||||
|
pr-labels: |
|
||||||
|
dependencies
|
||||||
|
automated
|
||||||
|
auto-merge
|
||||||
|
- name: Print PR number
|
||||||
|
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.
|
||||||
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -29,5 +29,5 @@ jobs:
|
||||||
uses: svenstaro/upload-release-action@v2
|
uses: svenstaro/upload-release-action@v2
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
file: ./*.AppImage
|
file: "./*.AppImage"
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue