Skip to content

Commit

Permalink
Merge branch 'main' into add-isvalidcompe-method
Browse files Browse the repository at this point in the history
  • Loading branch information
guibranco authored Nov 17, 2024
2 parents 317b613 + 5b05650 commit 7a4f6ae
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 10 deletions.
16 changes: 16 additions & 0 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
LC_ALL=C

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

valid_branch_regex="^(dependabot|feature|fix|docs|style|refactor|perf|hotfix|test|chore|create)(\/[a-zA-Z0-9._-]+)+$"

message="There is something wrong with your branch name. Branch names in this project must adhere to this contract: $valid_branch_regex. Your commit will be rejected. You should rename your branch to a valid name and try again."

if [[ ! $local_branch =~ $valid_branch_regex ]]
then
echo "$message"
exit 1
fi

dotnet tool restore && dotnet csharpier . --check
2 changes: 1 addition & 1 deletion .github/workflows/infisical-secrets-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
fetch-depth: 0

- name: Infisical secrets check
uses: guibranco/[email protected].14
uses: guibranco/[email protected].16
2 changes: 1 addition & 1 deletion .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
sudo wg-quick up ./wg0.conf
- name: Run lychee
uses: lycheeverse/lychee-action@v2.0.2
uses: lycheeverse/lychee-action@v2.1.0
id: lychee
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
14 changes: 7 additions & 7 deletions examples/emberjs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/emberjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@
"edition": "octane"
},
"dependencies": {
"bancos-brasileiros": "^6.0.93"
"bancos-brasileiros": "^6.0.97"
}
}

0 comments on commit 7a4f6ae

Please sign in to comment.