Skip to content

chore(scripts/daemon): disable iCloud notification agents #452

chore(scripts/daemon): disable iCloud notification agents

chore(scripts/daemon): disable iCloud notification agents #452

Workflow file for this run

# This file was autogenerated by actions.nix. Do not edit it manually.
# To make changes, edit the workflow definition in your flake's actions-nix configuration
# (typically under flake.actions-nix.workflows.".github/workflows/flake-check.yml") and run:
# nix run .#render-workflows
# Or commit to trigger the pre-commit hook if enabled.
jobs:
checking-flake:
environment:
name: dev
permissions:
contents: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@main
with:
fetch-depth: 1
persist-credentials: false
- name: Install Nix
uses: nixbuild/nix-quick-install-action@master
- name: Magic Nix Cache(Use Github Actions Cache)
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Configure to use personal binary cache @ Cachix
uses: cachix/cachix-action@master
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
name: divitmittal
- name: SSH-agent with auth for private repos
uses: webfactory/ssh-agent@master
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run nix flake check
run: nix -vL flake check --all-systems --no-build
timeout-minutes: 90
'on':
pull_request:
branches:
- master
paths-ignore:
- '**/*.md'
- '**/*.adoc'
- '**/*.jpeg'
- '**/*.jpg'
- '**/*.png'
- '**/*.svg'
- .github/**
- .git*
- assets/**
push:
branches:
- master
paths-ignore:
- '**/*.md'
- '**/*.adoc'
- '**/*.jpeg'
- '**/*.jpg'
- '**/*.png'
- '**/*.svg'
- .github/**
- .git*
- assets/**
workflow_dispatch: {}