-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (57 loc) · 1.81 KB
/
format.yml
File metadata and controls
66 lines (57 loc) · 1.81 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: format
on:
workflow_call:
inputs:
command:
description: 'The package.json script name which will be called via "pnpm run <command>"'
default: "format"
required: false
type: string
secrets:
BOT_APP_ID:
description: "The GitHub App ID for authenticating with the GitHub API"
required: true
BOT_PRIVATE_KEY:
description: "The GitHub App Private Key for authenticating with the GitHub API"
required: true
jobs:
format:
if: github.repository_owner == 'bombshell-dev'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Generate a token
id: bot-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
token: ${{ steps.bot-token.outputs.token }}
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Format code
run: pnpm run "${{env.COMMAND}}"
env:
COMMAND: ${{ inputs.command }}
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
env:
GH_TOKEN: ${{ steps.bot-token.outputs.token }}
with:
commit_message: "[ci] format"
branch: ${{ github.head_ref }}
commit_user_name: bombshell-bot
commit_author: ${{ github.event.commits[0].author.name }} <${{ github.actor }}@users.noreply.github.com>