mirror of
https://github.com/Cian-H/dotfiles.git
synced 2025-12-28 13:31:57 +00:00
Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
This commit is contained in:
27
dot_config/nushell/nu_scripts/.github/workflows/ci.yml
vendored
Normal file
27
dot_config/nushell/nu_scripts/.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
NUSHELL_CARGO_PROFILE: ci
|
||||
NU_LOG_LEVEL: DEBUG
|
||||
|
||||
jobs:
|
||||
nu-check:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: "Fetch main branch"
|
||||
run: |
|
||||
git fetch origin main --depth 1
|
||||
- uses: hustcer/setup-nu@v3.9
|
||||
with:
|
||||
version: "*"
|
||||
check-latest: true
|
||||
# features: full # dataframe and extra included
|
||||
- name: toolkit check pr
|
||||
shell: nu {0}
|
||||
# nix STUB_IDE_CHECK when nushell/nushell#12208 fixed
|
||||
run: |
|
||||
use ${{ github.workspace }}/toolkit.nu *
|
||||
STUB_IDE_CHECK=true check pr --and-exit
|
||||
38
dot_config/nushell/nu_scripts/.github/workflows/image-actions.yml
vendored
Normal file
38
dot_config/nushell/nu_scripts/.github/workflows/image-actions.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
name: Compress Images on Push to main branch
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- '**.jpg'
|
||||
- '**.jpeg'
|
||||
- '**.png'
|
||||
- '**.webp'
|
||||
jobs:
|
||||
build:
|
||||
name: calibreapp/image-actions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v4.1.2
|
||||
- name: Compress Images
|
||||
id: calibre
|
||||
uses: calibreapp/image-actions@main
|
||||
with:
|
||||
pngQuality: '90'
|
||||
webpQuality: '90'
|
||||
jpegQuality: '90'
|
||||
compressOnly: true
|
||||
jpegProgressive: false
|
||||
# ignorePaths: 'node_modules/**,build'
|
||||
# The `GITHUB_TOKEN` is automatically generated by GitHub and scoped only to the repository that is currently running the action. By default, the action can’t update Pull Requests initiated from forked repositories.
|
||||
# See https://docs.github.com/en/actions/reference/authentication-in-a-workflow and https://help.github.com/en/articles/virtual-environments-for-github-actions#token-permissions
|
||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Create New Pull Request If Needed
|
||||
if: steps.calibre.outputs.markdown != ''
|
||||
uses: peter-evans/create-pull-request@v6.0.3
|
||||
with:
|
||||
title: Compressed Images
|
||||
branch-suffix: timestamp
|
||||
commit-message: Compressed Images
|
||||
body: ${{ steps.calibre.outputs.markdown }}
|
||||
Reference in New Issue
Block a user