chore(deps): update peter-evans/create-pull-request action to v6 (#116) #103
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: Prettier | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: Can the code be prettier? 🤔 | |
runs-on: ubuntu-latest | |
# workflow_dispatch always lets you select the branch ref, even though in this case we only ever want to run the action on `main` this we need an if check | |
if: ${{ github.ref_name == 'main' }} | |
permissions: | |
contents: write # for gr2m/create-or-update-pull-request-action to push local changes | |
pull-requests: write # for gr2m/create-or-update-pull-request-action to create a PR | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: lts/* | |
- run: npm ci --ignore-scripts --only-dev | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache/prettier/.prettier-cache | |
key: prettier-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.gitignore') }} | |
- run: npm run fmt | |
- run: git restore .github/workflows | |
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.ECOSPARK_APP_ID }} | |
private_key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }} | |
- uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6 | |
with: | |
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com> | |
body: I ran `npm run prettier` 🧑💻 | |
branch: actions/prettier-if-needed | |
commit-message: 'chore(prettier): 🤖 ✨' | |
labels: 🤖 bot | |
title: 'chore(prettier): 🤖 ✨' | |
token: ${{ steps.generate-token.outputs.token }} |