Compare commits

..

10 Commits

11 changed files with 23 additions and 15 deletions

View File

@@ -1,3 +1,4 @@
---
name: Debug Changelog # Workflow name displayed on GitHub name: Debug Changelog # Workflow name displayed on GitHub
on: on:
workflow_dispatch: # Trigger manually workflow_dispatch: # Trigger manually

View File

@@ -1,3 +1,4 @@
---
name: reviewdog name: reviewdog
on: [push] on: [push]
jobs: jobs:

View File

@@ -1,13 +1,14 @@
---
name: Release Daily State # Workflow name displayed on GitHub name: Release Daily State # Workflow name displayed on GitHub
on: on:
workflow_dispatch: # Trigger manually workflow_dispatch: # Trigger manually
schedule: schedule:
- cron: '30 20 * * *' # UTC is 2-3 hours behind Europe/Helsinki, my timezone - cron: '30 20 * * *' # UTC is 2-3 hours behind Europe/Helsinki, my timezone
permissions:
contents: write
jobs: jobs:
new-daily-release: new-daily-release:
runs-on: self-hosted runs-on: self-hosted
permissions:
contents: write
outputs: outputs:
created: ${{ steps.daily-version.outputs.created }} created: ${{ steps.daily-version.outputs.created }}
version: ${{ steps.daily-version.outputs.version }} version: ${{ steps.daily-version.outputs.version }}

View File

@@ -1,3 +1,4 @@
---
name: Semantic PR name: Semantic PR
on: on:

View File

@@ -1,13 +1,14 @@
---
name: Update submodules name: Update submodules
on: on:
schedule: [{ cron: 0 3 * * * }] schedule: [{ cron: 0 3 * * * }]
workflow_dispatch: workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
jobs: jobs:
update-submodules: update-submodules:
permissions:
contents: write
issues: write
pull-requests: write
runs-on: self-hosted runs-on: self-hosted
steps: steps:
- name: Checkout repository - name: Checkout repository

View File

@@ -20,10 +20,11 @@ pre-commit 3.8.0
ripgrep 14.1.1 ripgrep 14.1.1
shellcheck 0.10.0 shellcheck 0.10.0
shfmt 3.9.0 shfmt 3.9.0
terragrunt 0.67.4 terragrunt 0.67.5
tf-summarize 0.3.10 tf-summarize 0.3.10
yamllint 1.35.1 yamllint 1.35.1
yq 4.44.3 yq 4.44.3
bats 1.11.0 bats 1.11.0
gitleaks 8.18.4 gitleaks 8.18.4
delta 0.18.1 delta 0.18.1
lazygit 0.44.0

View File

@@ -53,9 +53,9 @@ alias flush="dscacheutil -flushcache"
alias updatedb="sudo /usr/libexec/locate.updatedb" alias updatedb="sudo /usr/libexec/locate.updatedb"
# tmux: automatically attach or create session with name 'main' # tmux: automatically attach or create session with name 'main'
alias tmux='tmux new-session -A -s main' alias tm='command tmux new-session -A -s main'
# tmux: attach or create new session # tmux: attach or create new session
alias ta='tmux attach || tmux' alias ta='command tmux attach || command tmux'
# nvim # nvim
alias nvim-ks='NVIM_APPNAME="nvim-kickstart" nvim' alias nvim-ks='NVIM_APPNAME="nvim-kickstart" nvim'

View File

@@ -93,7 +93,7 @@ darknotify_alacritty()
} }
return 0 return 0
} }
darknotify_alacritty # darknotify_alacritty
# Function to list installed Homebrew packages using bkt caching # Function to list installed Homebrew packages using bkt caching
brew_installed() brew_installed()
@@ -147,7 +147,7 @@ rector()
{ {
local php="${1:-82}" local php="${1:-82}"
docker run -v "$(pwd)":/project rector/rector:latest process \ docker run -v "$(pwd)":/project rector/rector:latest process \
"/project/$1" \ "/project/" \
--set "php${php}" \ --set "php${php}" \
--autoload-file /project/vendor/autoload.php --autoload-file /project/vendor/autoload.php
} }

View File

@@ -29,7 +29,7 @@
"lazyvim.plugins.extras.util.mini-hipatterns" "lazyvim.plugins.extras.util.mini-hipatterns"
], ],
"news": { "news": {
"NEWS.md": "6077" "NEWS.md": "6520"
}, },
"version": 6 "version": 6
} }

View File

@@ -29,13 +29,15 @@ type = "prompt"
style = "mixed" style = "mixed"
[blocks.segments.mapped_locations] [blocks.segments.mapped_locations]
"~/Code/*" = "" "~/Code/*" = ""
"~/Code/ivuorinen/" = ""
[[blocks.segments]] [[blocks.segments]]
type = "git" type = "git"
style = "plain" style = "plain"
foreground = "lightGreen" foreground = "lightGreen"
template = "{{ .UpstreamIcon }}{{ if or (.Staging.Changed) (.Working.Changed) }}({{if .Behind }}\u2193 {{ .Behind }} {{ end }}{{if .Staging.Changed }}\uF046 {{ .Staging.String }} {{ end }}{{ if and (.Staging.Changed) (.Working.Changed) }}| {{ end }}{{ if .Working.Changed }} {{ .Working.String }}{{ end }}){{ end }}" # template = "{{ .UpstreamIcon }}{{ .HEAD }} {{ if or (.Staging.Changed) (.Working.Changed) }}({{if .Behind }}\u2193 {{ .Behind }} {{ end }}{{if .Staging.Changed }}\uF046 {{ .Staging.String }} {{ end }}{{ if and (.Staging.Changed) (.Working.Changed) }}| {{ end }}{{ if .Working.Changed }} {{ .Working.String }}{{ end }}){{ end }}"
template = "{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}  {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}  {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }}  {{ .StashCount }}{{ end }}"
[blocks.segments.properties] [blocks.segments.properties]
fetch_status = true fetch_status = true