File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
adbc_drivers_dev/templates Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ name: Update Workflow Template Actions
1919on :
2020 schedule :
2121 - cron : 14 23 * * *
22+ workflow_dispatch : {}
2223
2324concurrency :
2425 group : ${{ github.repository }}-${{ github.ref }}-${{ github.workflow }}
5556 env :
5657 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5758 run : |
58- if [ -n "$(git status --porcelain | { grep -v '^?? ' || || test $? = 1 })" ]; then
59+ if [ -n "$(git status --porcelain | { grep -v '^?? ' || test $? = 1 })" ]; then
5960 PR_TITLE="chore: update workflow template action versions"
6061 BRANCH="chore/workflows_$(date +%Y-%m-%d)"
6162
Original file line number Diff line number Diff line change @@ -27,3 +27,15 @@ enable = [
2727max-issues-per-linter = 0
2828max-same-issues = 0
2929uniq-by-line = false
30+
31+ [linters ]
32+ enable = [
33+ " errcheck" ,
34+ " govet" ,
35+ " ineffassign" ,
36+ " intrange" ,
37+ " mirror" ,
38+ " nolintlint" ,
39+ " staticcheck" ,
40+ " unused" ,
41+ ]
You can’t perform that action at this time.
0 commit comments