fix: トップページの左右の余白を修正 #3412
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
# Semantic PR | |
name: PR | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
permissions: | |
pull-requests: read | |
jobs: | |
# Semantic Title | |
semantic: | |
name: Semantic Title | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
timeout-minutes: 10 | |
if: github.repository == 'Hiratake/hiratake-web' | |
steps: | |
- name: Validate PR title | |
uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |