短歌に「()()」があればふりがなも一緒に出力したと判定して失敗判定 #11
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
# mainブランチにはdevelopブランチからのPRのみを許可する | |
name: check branch | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check_branch: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if PR is from develop | |
if: github.event.pull_request.head.ref != 'develop' | |
run: exit 1 |