ci: update commitlint config #1
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: Pull actions | |
on: | |
pull_request: | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
name: Check style formatting | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup node.js | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: npm ci | |
- name: Validate Pull Request Message | |
run: | | |
cat << 'EOM' | npx commitlint --verbose --config commitlint.config.mjs | |
${{ github.event.pull_request.title }} | |
${{ github.event.pull_request.body }} | |
EOM | |
- name: Commit Linter | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: wagoid/[email protected] | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- run: python3 -m pip install black | |
- run: black . | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
needs: | |
- style | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Fetch Dependabot Metadata | |
id: dependabot-metadata | |
uses: dependabot/fetch-metadata@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Enable auto-merge for patches | |
if: ${{ steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh pr merge --auto --rebase --delete-branch "${{ github.event.pull_request.html_url }}" |