Skip to content

Update P5-wrapper/setup-action action to v1.0.5 #15

Update P5-wrapper/setup-action action to v1.0.5

Update P5-wrapper/setup-action action to v1.0.5 #15

Workflow file for this run

name: Renovate Bot
on:
pull_request_target:
branches: [master]
jobs:
renovate-bot:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/setup-action@v1.0.5
with:
token: ${{ secrets.GH_TOKEN }}
- name: Run format if the PR is from the Renovate bot
if: github.actor == 'renovate[bot]'
run: pnpm format
shell: bash
- name: Commit any formatting changes
if: github.actor == 'renovate[bot]'
uses: stefanzweifel/git-auto-commit-action@v4.16.0
with:
commit_message: Apply formatting updates
branch: ${{ github.head_ref }}
token: ${{ secrets.GH_TOKEN }}