Add: #577 メンション数上限設定を、メンションされた全てのローカルアカウントが相手をフォローしている場合、そうでない場合で分けられるように #701
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: Haml Linting | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
- 'renovate/**' | |
paths: | |
- '.github/workflows/haml-lint-problem-matcher.json' | |
- '.github/workflows/lint-haml.yml' | |
- '.haml-lint*.yml' | |
- '.rubocop*.yml' | |
- '.ruby-version' | |
- '**/*.haml' | |
- 'Gemfile*' | |
pull_request: | |
paths: | |
- '.github/workflows/haml-lint-problem-matcher.json' | |
- '.github/workflows/lint-haml.yml' | |
- '.haml-lint*.yml' | |
- '.rubocop*.yml' | |
- '.ruby-version' | |
- '**/*.haml' | |
- 'Gemfile*' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Ruby environment | |
uses: ./.github/actions/setup-ruby | |
- name: Run haml-lint | |
run: | | |
echo "::add-matcher::.github/workflows/haml-lint-problem-matcher.json" | |
bundle exec haml-lint |