Session内にYoutubeを載せる実装 #403
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: Auto Format | |
on: | |
pull_request: | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Fetch flutter config | |
uses: kuhnroyal/flutter-fvm-config-action@v1 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
channel: ${{ env.FLUTTER_CHANNEL }} | |
cache: true | |
- name: Install dependencies | |
run: | | |
flutter pub get | |
- name: Format | |
run: | | |
files=$(find lib test -name "*.dart" -not \( -name "*.*freezed.dart" -o -name "*.*g.dart" -o -name "*.gen.dart" \)) | |
for file in $files; do | |
# limit jobs to 5 | |
if [ "$(jobs -r | wc -l)" -ge 5 ]; then | |
wait "$(jobs -r -p | head -1)" | |
fi | |
dart fix --apply "$file" & | |
done | |
wait | |
dart format "$files" | |
# 変更が発生した場合は プルリクエストを作成 | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
delete-branch: true | |
commit-message: "Auto format" | |
committer: "GitHub Actions <noreply@github.com>" | |
base: ${{ github.head_ref }} | |
branch: "auto-format/${{ github.sha }}" | |
title: "Auto format - ref: ${{ github.ref_name }}" | |
body: "Auto format by GitHub Actions on ${{ github.sha }}\nby: ${{github.actor}}" | |