summaryrefslogtreecommitdiff
path: root/.github/commit-msg
AgeCommit message (Collapse)Author
2024-02-05build(deps): update dependency husky to v9 (#6598)renovate[bot]
* build(deps): update dependency husky to v9 * ci(husky): adjust hooks for v9 convention Signed-off-by: Amir Zarrinkafsh <nightah@me.com> --------- Signed-off-by: Amir Zarrinkafsh <nightah@me.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
2023-01-30ci: fix npm run (#4849)James Elliott
2021-12-02refactor(web): only fetch totp conf if required (#2663)James Elliott
Prevents the TOTP user config from being requested when the user has not registered or is already authenticated 2FA.
2021-12-01feat(duo): multi device selection (#2137)Philipp Staiger
Allow users to select and save the preferred duo device and method, depending on availability in the duo account. A default enrollment URL is provided and adjusted if returned by the duo API. This allows auto-enrollment if enabled by the administrator. Closes #594. Closes #1039.
2021-10-04docs: fix required flag for smtp notifier sender option (#2446)Amir Zarrinkafsh
Fixes: #2445.
2021-10-02ci(buildkite): remove automatic retries for lint step (#2435)Amir Zarrinkafsh
* ci(buildkite): remove automatic retries for lint step * refactor(web): refactor commitlint hook for windows
2021-09-29refactor: replace yarn with pnpm (#2424)Amir Zarrinkafsh
* Check for pnpm in authelia-scripts * Improve husky hooks to check for required apps * Use pnpm in coverage dockerfile * Use pnpm in dev workflow * Stop buildx log truncation * Ignore pnpm lockfile in yamllint * Update versions required for docker and docker-compose in contributing docs
2021-09-09ci: add husky with pre-commit and commit-msg hooks (#2352)Amir Zarrinkafsh
* ci: add husky with pre-commit and commit-msg hooks This change includes two new hooks as part of our GitHub workflow with husky: * `pre-commit`: Performs linting with golangci-lint and eslint/prettier * `commit-msg`: Ensures that the commit messages conform to our guidelines and will error and provide context to a user when they do not. The `prepare` command which has been included is executed each time a `yarn install` is executed. * ci: extend @commitlint/config-conventional configuration * fix: lint all dot js files