Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

feat: add pre-push and update pre-commit and add repos orange #3

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/submodule-update-orange.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Submodule update
strategy:
matrix:
targets: [orange-cloudavenue/terraform-provider-cloudavenue, orange-cloudavenue/cloudavenue-sdk-go, orange-cloudavenue/cloudavenue-cli]
targets: [orange-cloudavenue/terraform-provider-cloudavenue, orange-cloudavenue/cloudavenue-sdk-go, orange-cloudavenue/cloudavenue-cli, orange-cloudavenue/module-template, orange-cloudavenue/terraform-cloudavenue-nats]
runs-on: ubuntu-latest
env:
PARENT_REPOSITORY: ${{ matrix.targets }}
Expand Down
9 changes: 9 additions & 0 deletions pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#!/bin/sh

if [ $(git diff --check --cached | wc -c) -eq 0 ]; then
echo ""
echo "✗ Any files are added to commit"
echo "Add files to commit and retry"
exit 2
fi

# Check if gitleaks is installed
if ! type gitleaks >/dev/null 2>/dev/null; then
echo ""
echo "gitleaks could not be found"
Expand All @@ -10,4 +18,5 @@ if ! type gitleaks >/dev/null 2>/dev/null; then
exit 2;
fi

# Run gitleaks
gitleaks protect --verbose --redact --staged
14 changes: 14 additions & 0 deletions pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/sh

branch="$(git rev-parse --abbrev-ref HEAD)"

if [ "$branch" = "main" ]; then
# Are you sure you want to push to protected branch?
read -p "You're about to push to main branch. Are you sure? [y/N] " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Aborting"
exit 1
fi
echo "Pushing to main branch"
fi