diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5ace4600..600a98c2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,5 @@ updates: directory: "/" schedule: interval: "weekly" + commit-message: + prefix: "chore" diff --git a/.github/typos.toml b/.github/typos.toml new file mode 100644 index 00000000..ec620a44 --- /dev/null +++ b/.github/typos.toml @@ -0,0 +1,2 @@ +[default.extend-words] +muc = "muc" # For Munich location code diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6aad7b6c..46ed2f88 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,11 +48,13 @@ jobs: - name: Format run: bun fmt:ci - name: typos-action - uses: crate-ci/typos@v1.17.2 + uses: crate-ci/typos@v1.31.1 + with: + config: .github/typos.toml - name: Lint run: bun lint # Disable version check until https://github.com/coder/modules/pull/426 is merged. - # This will alow us to use seperate versioning for each module without failing CI. The backend already supports that. + # This will allow us to use separate versioning for each module without failing CI. The backend already supports that. # - name: Check version # shell: bash # run: |