Skip to content

Commit

Permalink
Fix yamllint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Jul 15, 2024
1 parent 160ea6c commit 3674182
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
name: Build and test
on: [ push ]
---

name: "Build and test"
on: # yamllint disable-line rule:truthy
- "push"

jobs:
nix-ci:
uses: rake5k/flake-commons/.github/workflows/nix-ci.yml@main
uses: "rake5k/flake-commons/.github/workflows/nix-ci.yml@main"
with:
branch: ${{ github.ref_name }}
nix-command: flake check --impure
system: x86_64-linux
branch: "${{ github.ref_name }}"
nix-command: "flake check --impure"
system: "x86_64-linux"
secrets:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
CACHIX_AUTH_TOKEN: "${{ secrets.CACHIX_AUTH_TOKEN }}"
16 changes: 9 additions & 7 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: Update inputs
on:
---

name: "Update inputs"
on: # yamllint disable-line rule:truthy
schedule:
- cron: 0 1 * * *
- cron: "0 1 * * *"

jobs:
nix-update:
uses: rake5k/flake-commons/.github/workflows/nix-update.yml@main
uses: "rake5k/flake-commons/.github/workflows/nix-update.yml@main"
with:
base-branch: master
nix-check-command: flake check --impure
base-branch: "master"
nix-check-command: "flake check --impure"
secrets:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
CACHIX_AUTH_TOKEN: "${{ secrets.CACHIX_AUTH_TOKEN }}"

0 comments on commit 3674182

Please sign in to comment.