Update peter-evans/find-comment digest to e3c124b #1604
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: Format | |
on: | |
pull_request: | |
paths-ignore: | |
- 'app-ios/**' | |
concurrency: | |
group: format-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- run: ./gradlew spotlessKotlinApply | |
- uses: reviewdog/action-suggester@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tool_name: spotless |