Home > database >  How to keep original color in logs for grep | docker | act
How to keep original color in logs for grep | docker | act

Time:05-27

I have started working with nektos/act repository to run my Github Actions locally and what I want to do is to display the original color logs only for the steps in my workflow at .github/workflows/lint.yml. Since the --verbose flag does not allow me to filter these logs, I have been using grep and it works as expected with the following command.

act push --secret-file .secrets --rm | grep -ivw -e "           
  • Related