Skip to content

Commit

Permalink
Merge branch 'main' into gitauto/issue-#268-eac6ba88-4e90-45f2-a21e-9…
Browse files Browse the repository at this point in the history
…6dc2c0d993e
  • Loading branch information
guibranco authored Nov 17, 2024
2 parents 170299e + 5b05650 commit 1301bdd
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 53 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/github-infisical-secrets-check-action@v1.1.12
uses: guibranco/github-infisical-secrets-check-action@v1.1.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
2 changes: 1 addition & 1 deletion .github/workflows/size-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
) || (
github.event_name == 'workflow_dispatch'
)
uses: "pascalgn/size-label-action@v0.5.4"
uses: "pascalgn/size-label-action@v0.5.5"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
98 changes: 49 additions & 49 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.82"
"bancos-brasileiros": "^6.0.97"
}
}

0 comments on commit 1301bdd

Please sign in to comment.