Skip to content

Commit e93c62a

Browse files
authored
Merge pull request #243 from nim65s/nix
update CI
2 parents 755a516 + fd9bcbe commit e93c62a

File tree

6 files changed

+42
-10
lines changed

6 files changed

+42
-10
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/nix.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ name: "CI - Nix"
22

33
on:
44
push:
5+
branches:
6+
- devel
7+
- master
8+
pull_request:
9+
branches:
10+
- devel
11+
- master
512

613
jobs:
714
tests:
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: update-flake-lock
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 11 11 * *'
7+
8+
jobs:
9+
lockfile:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
- name: Install Nix
15+
uses: DeterminateSystems/nix-installer-action@main
16+
- name: Update flake.lock
17+
uses: DeterminateSystems/update-flake-lock@main

.mergify.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ pull_request_rules:
55
- check-success = "Nix build on ubuntu"
66
- check-success = "pre-commit.ci - pr"
77
- or:
8-
- author = pre-commit-ci[bot]
98
- author = dependabot[bot]
9+
- author = github-actions[bot]
10+
- author = pre-commit-ci[bot]
1011
actions:
1112
merge:

flake.lock

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "Corba server for Humanoid Path Planner applications";
33

44
inputs = {
5-
nixpkgs.url = "github:gepetto/nixpkgs";
5+
nixpkgs.url = "github:NixOS/nixpkgs/refs/pull/362956/head";
66
flake-parts = {
77
url = "github:hercules-ci/flake-parts";
88
inputs.nixpkgs-lib.follows = "nixpkgs";

0 commit comments

Comments
 (0)