https://github.com/illvart/beautysh-action
A GitHub Action for beautysh.
https://github.com/illvart/beautysh-action
automation bash beautifier beautify code-quality developer-tools formatter github-action pretty-print shell shell-script
Last synced: 5 months ago
JSON representation
A GitHub Action for beautysh.
- Host: GitHub
- URL: https://github.com/illvart/beautysh-action
- Owner: illvart
- License: mit
- Created: 2020-11-13T20:21:48.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-18T00:25:21.000Z (about 2 years ago)
- Last Synced: 2024-12-01T02:05:43.467Z (5 months ago)
- Topics: automation, bash, beautifier, beautify, code-quality, developer-tools, formatter, github-action, pretty-print, shell, shell-script
- Language: Dockerfile
- Homepage: https://github.com/marketplace/actions/bash-shell-beautifier
- Size: 3.91 KB
- Stars: 11
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Bash shell beautifier
[](https://github.com/illvart/beautysh-action/releases)
[](https://github.com/illvart/beautysh-action/blob/main/LICENSE)
[](https://github.com/marketplace/actions/bash-shell-beautifier)A GitHub Action that runs [beautysh](https://github.com/lovesegfault/beautysh) for beautify a bash shell scripts code.
## Usage
To use this action in your repository, create a file like `.github/workflows/ci.yml` with the following example:
```yaml
name: CIon:
pull_request:
push:
branches:
- master
jobs:
beautify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Run beautysh
uses: illvart/beautysh-action@latest
with:
# Pass beautysh options in args, for example:
args: '*.sh --indent-size 4'- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: '[auto] ci: apply beautysh changes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```If there is no `args` option it will fallback into `*.sh`.
To avoid errors when project directory doesn't have an `*.sh` file, you can pass it with `&>/dev/null`.
For a full list of possible `args` checkout the [beautysh docs](https://github.com/lovesegfault/beautysh#usage).