Skip to content

Commit

Permalink
✨ add Zenn meta check
Browse files Browse the repository at this point in the history
  • Loading branch information
murnana committed Nov 19, 2023
1 parent 90944c2 commit ed5c96b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/zenn-meta-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Zenn meta check

on:
pull_request:
branches:
- main
paths:
- '.github/workflows/zenn-meta-check.yml'
- '**.md'
- 'package.json'
- 'package-lock.json'


# Only cancel in-progress jobs or runs for the current workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions: {}

jobs:
textlint:
name: Check Zenn metadata
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Vallidate metadata
uses: korosuke613/zenn-metadata-updater-action@v2
with:
validate-only: true

0 comments on commit ed5c96b

Please sign in to comment.