feat(link): use new design for links #525
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: The Gatekeeper's Grimoire aka PR Gate | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
permissions: | |
contents: read | |
jobs: | |
commitlint: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Unveiling the Code Codex | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Scrutinizing the Commit Chronicle | |
uses: wagoid/commitlint-github-action@v3 | |
- name: Exterminating the Fixup Fiends | |
uses: vladjerca/no-fixups-action@main | |
with: | |
skip-checkout: true |