Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dart format --output=none --set-exit-if-changed

Tags:

github

flutter

I got some assignment to do. I made a PR in GitHub then in checks I get this error. I am new to this issue. How can I resolve this?

enter image description here

like image 419
Mansoor Malik Avatar asked Sep 03 '25 02:09

Mansoor Malik


1 Answers

Updating a pull request is a simple as pushing a new commit from the same branch you originally made your pull request.

In your case, run the requested command, then add, commit and push:

cd /path/to/local/repository
dart format .
git add .
git commit -m "dart format"
git push

That will update the PR, and triggers its associated workflows (GitHub Actions).

like image 86
VonC Avatar answered Sep 07 '25 18:09

VonC