Allow the product slider to be sorted on index #3050
This file contains hidden or 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: Duster | |
# Commits made in here will not trigger any workflows | |
# Checkout Duster's documentation for a workaround | |
on: | |
push: | |
jobs: | |
duster: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.RAPIDEZ_ACTIONS_ACCOUNT_PAT }} | |
- name: "Duster Fix" | |
uses: tighten/duster-action@v2 | |
with: | |
args: fix -vvv | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
id: auto_commit_action | |
with: | |
commit_message: Apply fixes from Duster | |
commit_user_name: GitHub Action | |
commit_user_email: actions@github.com |