Fix Faction Member Filter for new activity icons. #670
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: Run Prettier | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Downloads Repos for Usage | |
- uses: actions/checkout@v3 | |
# Runs prettier | |
- name: Format with prettier | |
uses: creyD/prettier_action@v4.3 | |
with: | |
prettier_options: --config .prettierrc --write . --list-different | |
- name: Add & Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: Apply prettier changes. | |
default_author: github_actions |