File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 with :
2424 persist-credentials : false
2525 - name : Enable Pull Request Automerge
26- run : gh pr merge --rebase --auto "${{ github.event.pull_request.number }} "
26+ run : gh pr merge --rebase --auto "$PR_NUMBER "
2727 env :
2828 GH_TOKEN : ${{ secrets.WEBLATE_CI_TOKEN }} # zizmor: ignore[secrets-outside-env]
29+ PR_NUMNBER : ${{ github.event.pull_request.number }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -54,12 +54,6 @@ repos:
5454 rev : v0.25
5555 hooks :
5656 - id : validate-pyproject
57- - repo : https://github.com/executablebooks/mdformat
58- rev : 1.0.0
59- hooks :
60- - id : mdformat
61- additional_dependencies :
62- - mdformat-gfm==1.0.0
6357- repo : https://github.com/rhysd/actionlint
6458 rev : v1.7.12
6559 hooks :
@@ -93,6 +87,11 @@ repos:
9387 hooks :
9488 - id : shfmt
9589 args : [--write]
90+ - repo : https://github.com/rvben/rumdl-pre-commit
91+ rev : v0.1.62
92+ hooks :
93+ - id : rumdl
94+ - id : rumdl-fmt
9695ci :
9796 autoupdate_schedule : quarterly
9897 skip :
Original file line number Diff line number Diff line change 1+ # Copyright © Michal Čihař <michal@weblate.org>
2+ #
3+ # SPDX-License-Identifier: CC0-1.0
4+ #
5+ # This file is maintained in https://github.com/WeblateOrg/meta/
6+
7+ [global ]
8+ disable = [
9+ # Avoid length limit checks
10+ " line-length" ,
11+ # We do not enforce heading
12+ " first-line-heading"
13+ ]
14+
15+ [per-file-ignores ]
16+ "README.md" = [
17+ # Allow HTML
18+ " MD033"
19+ ]
You can’t perform that action at this time.
0 commit comments