-
Notifications
You must be signed in to change notification settings - Fork 20
46 lines (41 loc) · 1.48 KB
/
lint-fix.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
name: Fix linting issues
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
run:
name: Are there issues that linters can fix? 🤔
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version: lts/*
- name: Authenticate with private NPM package @sanity/sanitype
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPMRC }}" > ~/.npmrc
- run: pnpm install --ignore-scripts --no-frozen-lockfile
- run: git restore pnpm-lock.yaml
- run: pnpm lint:fix
- uses: tibdex/github-app-token@0d49dd721133f900ebd5e0dff2810704e8defbc6 # v1
id: generate-token
with:
app_id: ${{ secrets.ECOSPARK_APP_ID }}
private_key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `pnpm lint:fix` 🧑💻
branch: actions/lint-fix
commit-message: 'chore(lint): --fix 🤖 ✨'
labels: 🤖 bot
title: 'chore(lint): --fix 🤖 ✨'
token: ${{ steps.generate-token.outputs.token }}