Configured Navic and integrated it with Lualine. This provides context about the code that is being worked on. Also added a PAT to be able to create a PR when the Flake Update Github action runs.
23 lines
560 B
YAML
23 lines
560 B
YAML
on:
|
|
schedule:
|
|
- cron: "30 00 * * 1"
|
|
|
|
jobs:
|
|
lockfile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Repository Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Instal Nix
|
|
uses: DeterminateSystems/nix-installer-action@v1
|
|
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@v22
|
|
with:
|
|
nix-options: --debug --log-format raw
|
|
token: ${{ secrets.FLAKE_TOKEN }}
|
|
pr-title: "deps: update flake.lock"
|
|
pr-labels: |
|
|
dependencies
|
|
automated
|