This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format = """ | |
$time\ | |
$username\ | |
$hostname\ | |
$directory\ | |
$all\ | |
$line_break\ | |
$git_branch\ | |
$git_status\ | |
$character""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Convert Cloudflare Check Run to Status | |
on: | |
check_run: | |
types: [completed] | |
jobs: | |
create_status_for_check: | |
name: Create Status for Check Run | |
runs-on: ubuntu-latest | |
permissions: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROMPT=" | |
%{$fg[yellow]%}%@%{$fg[white]%} - %{$fg[magenta]%}%n%{$fg[cyan]%}@%m %{[$fg[white]%}%~%{$fg[cyan]%}] | |
" | |
PROMPT+=' $(git_prompt_info)%{$fg[magenta]%}λ %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[green]%}(" | |
ZSH_THEME_GIT_PROMPT_SUFFIX=" " | |
ZSH_THEME_GIT_PROMPT_DIRTY=")%{$fg[red]%} **%{$fg[yellow]%}dirty%{$fg[red]%}** " | |
ZSH_THEME_GIT_PROMPT_CLEAN=")" |