-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (56 loc) · 2.58 KB
/
Copy pathformat.yml
File metadata and controls
69 lines (56 loc) · 2.58 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
67
68
69
name: Auto-format JavaScript
on:
push:
branches: [ "main", "code-formatting" ]
paths:
- index.js
- example.js
jobs:
build:
runs-on: ubuntu-latest
permissions: write-all
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Format JavaScript code
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm -g install js-beautify && js-beautify -r index.js example.js --config .formatting.json
- name: Commit changes
uses: EndBug/add-and-commit@v10 # You can change this to use a specific version.
with:
# The arguments for the `git add` command (see the paragraph below for more info)
# Default: '.'
add: 'index.js example.js'
# The name of the user that will be displayed as the author of the commit.
# Default: depends on the default_author input
author_name: SparkleBot
# The email of the user that will be displayed as the author of the commit.
# Default: depends on the default_author input
author_email: mail@example.com
# Determines the way the action fills missing author name and email. Three options are available:
# - github_actor -> UserName <UserName@users.noreply.github.com>
# - user_info -> Your Display Name <your-actual@email.com>
# - github_actions -> github-actions <email associated with the github logo>
# Default: github_actor
default_author: github_actor
# Arguments for the git fetch command. If set to false, the action won't fetch the repo.
# For more info as to why fetching is usually recommended, please see the "Performance on large repos" FAQ.
# Default: --tags --force
fetch: false
# The message for the commit.
# Default: 'Commit from GitHub Actions (name of the workflow)'
message: 'Format JavaScript code'
# The way the action should handle pathspec errors from the add and remove commands. Three options are available:
# - ignore -> errors will be logged but the step won't fail
# - exitImmediately -> the action will stop right away, and the step will fail
# - exitAtEnd -> the action will go on, every pathspec error will be logged at the end, the step will fail.
# Default: ignore
pathspec_error_handling: ignore
push: true