From 507e580e7591104b8c14266f4e7a15ada83a1707 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Wed, 29 Jan 2025 12:46:11 +0530 Subject: [PATCH] fix(github/workflows/bumper): typo --- .github/workflows/nix-bumper.yml | 4 ++-- nix/bumper/bumper.sh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nix-bumper.yml b/.github/workflows/nix-bumper.yml index 8d5349674f..1da739fa13 100644 --- a/.github/workflows/nix-bumper.yml +++ b/.github/workflows/nix-bumper.yml @@ -3,10 +3,10 @@ name: "bumper" on: push: branches: - - "devlop" + - "develop" pull_request_target: branches: - - "devlop" + - "develop" jobs: bumper: diff --git a/nix/bumper/bumper.sh b/nix/bumper/bumper.sh index caa07bad52..85b0d4bd45 100755 --- a/nix/bumper/bumper.sh +++ b/nix/bumper/bumper.sh @@ -1,6 +1,6 @@ #!/bin/sh -commit_message="chore(nix/pacakge/pnpmDeps): bump hash" +commit_message="chore(nix/package/pnpmDeps): bump hash" commit_author="auto walle" commit_email="auto@sinanmohd.com" package_path="nix/package.nix" @@ -46,10 +46,10 @@ if [ ! -w "$package_path" ] || [ ! -r "$package_path" ]; then fi if early_escape_possible; then - echo "early escape suckcess : nix bump commit is newer" + echo "early escape success : nix bump commit is newer" exit 0 else - echo "early esacpe failuree : npm bump commit is newer, here we go again" + echo "early esacpe failure : npm bump commit is newer, here we go again" fi fake_hash="sha256-0000000000000000000000000000000000000000000=" @@ -67,6 +67,6 @@ if [ "$cur_hash" != "$new_hash" ]; then git commit -m "$commit_message" git push else - echo "hash staysss: waiting for your next commit" + echo "hash did not change: waiting for your next commit" hash_set "$cur_hash" fi