Skip to content

Commit

Permalink
🔨 BUMP: 3 files changed, 9(+), 5(-)
Browse files Browse the repository at this point in the history
  • Loading branch information
borestad committed Sep 15, 2023
1 parent a9fe937 commit 34c1c1b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/bin/cron.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A

import { $ } from 'dax/mod.ts'
import { $ } from '../lib/deps.ts'

await $ `echo hello world`
2 changes: 1 addition & 1 deletion .github/lib/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export { $ } from 'dax/mod.ts'
export { colors } from 'dax/src/deps.ts'
export * as uuid from 'std/uuid/mod.ts'
export const { log } = console
export * as p from 'npm:blend-promise-utils'
export * as P from 'npm:blend-promise-utils'
export * as dax from 'dax/src/deps.ts'
export const chalk = _chalk
10 changes: 7 additions & 3 deletions .github/scripts/ciutil
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,14 @@ optimize-apt-get-install() {
git-commit-to-repository() {
git config user.name github-actions
git config user.email [email protected]
git pull --rebase
git pull --rebase --autostash
git add . --verbose
stats=$(git diff --cached --shortstat | sed -E 's/ (insertion|insertions|deletion|deletions)//g')
git commit -m "⚡️ CI: $stats [skip ci]" -a || true

stats=$(git diff --cached --shortstat | sed -E 's/ (insertion?|deletion?)//g')
DATE=$(date +%Y:%m:%d-%H:%M:%S)

git commit -m "⚡️ CI: \`$DATE\` [$stats]" -a || true
git push
}

set-env-variables() {
Expand Down

0 comments on commit 34c1c1b

Please sign in to comment.