Fix bug with no internet icon on tail blog #2
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
on: | |
push: | |
paths: | |
- '*.dart' | |
jobs: | |
format: | |
name: Format Dart Files | |
runs-on: ubuntu-latest | |
permissions: # Job-level permissions configuration starts here | |
contents: write # 'write' access to repository contents | |
pull-requests: write # 'write' access to pull requests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: ./.github/actions/setup_build | |
- name: Dart format | |
run: dart format | |
- name: Stage Changes | |
run: git config user.email "github-actions[bot]@users.noreply.github.com" && git config user.name "github-actions[bot]" && git commit -am "[skip ci] Dart Formatting" | |
- name: Push changes | |
uses: ad-m/github-push-action@master |