Skip to content

Bump sass from 1.79.4 to 1.79.6 #1134

Bump sass from 1.79.4 to 1.79.6

Bump sass from 1.79.4 to 1.79.6 #1134

Workflow file for this run

name: JSON tidy
on:
pull_request:
merge_group:
jobs:
json-tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
- name: Run JSON tidy
run: .github/lib/json-tidy.rb
- name: Push any updated fiels
run: |
git config --global user.email "[email protected]"
git config --global user.name "json-tidy-bot"
git add --all
git commit -m "JSON tidy" || exit 0
git push