Skip to content

Commit

Permalink
共通ワークフローを適用する (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Oct 18, 2023
1 parent f9123e3 commit 3945b2d
Show file tree
Hide file tree
Showing 6 changed files with 377 additions and 307 deletions.
42 changes: 42 additions & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# https://github.com/super-linter/super-linter/blob/main/TEMPLATES/.markdown-lint.yml
---
###########################
###########################
## Markdown Linter rules ##
###########################
###########################

# Linter rules doc:
# - https://github.com/DavidAnson/markdownlint
#
# Note:
# To comment out a single error:
# <!-- markdownlint-disable -->
# any violations you want
# <!-- markdownlint-restore -->
#

###############
# Rules by id #
###############
MD004: false # Unordered list style
MD007:
indent: 2 # Unordered list indentation
MD013:
line_length: 400 # Line length 80 is far too short
MD026:
punctuation: ".,;:!。,;:" # List of not allowed
MD029: false # Ordered list item prefix
MD033: false # Allow inline HTML
MD036: false # Emphasis used instead of a heading

#################
# Rules by tags #
#################
blank_lines: false # Error on blank lines

# VOICEVOX
# テキストファイルとして扱うようなmarkdownファイルが多く、それらに合わせてルールを緩くする
MD034: false # no-bare-urls
MD041: false # first-line-h1
MD025: false # single-h1
16 changes: 16 additions & 0 deletions .github/workflows/voicevox_shared.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: VOICEVOX Shared Workflow

on:
push:
pull_request:
workflow_dispatch:

jobs:
voicevox-shared-workflow:
uses: VOICEVOX/.github/.github/workflows/shared.yml@main

# Super Linter に必要
permissions:
contents: read
packages: read
statuses: write
Loading

0 comments on commit 3945b2d

Please sign in to comment.