Skip to content

fix: webauthn mfa integration #398

fix: webauthn mfa integration

fix: webauthn mfa integration #398

Workflow file for this run

name: "Lint PR"
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
# Only one instance of this workflow will run on the same ref (PR/Branch/Tag)
# Previous runs will be cancelled.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-pr-title:
name: Lint PR Title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
validateSingleCommit: true
# Enforces the update of a changelog file on every pull request
lint-changelog:
name: Enforce Changelogs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dangoslen/changelog-enforcer@v2
with:
changeLogPath: "CHANGELOG.md"
skipLabels: "Skip-Changelog"