generated from mezotv/Discord-Bot-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
54 lines (45 loc) · 1.52 KB
/
prettier.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
47
48
49
50
51
52
53
54
name: Prettier
on:
workflow_dispatch:
#Runs at 01:01 UTC
schedule:
- cron: "1 1 * * *"
concurrency:
group: "main-branch"
jobs:
format:
if: github.repository == 'Would-You-Bot/client'
runs-on: ubuntu-latest
name: Format Files
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- run: npm ci
- name: Prettier
run: npm run format
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v4
id: format-files
with:
commit_message: "chore(style): format files"
skip_checkout: true
branch: "formatting-${{ github.sha }}"
create_branch: true
# create PR using GitHub CLI if files were formatted
- name: create PR with formatted files
if: steps.format-files.outputs.changes_detected == 'true'
id: create-pr
run: git checkout formatting-${{ github.sha }} && gh pr create --base main --head formatting-${{ github.sha }} --title 'Merge formatting into main' --body 'Created by Github action'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# merge PR using GitHub CLI
- name: merge PR with adjusted formatting
if: steps.format-files.outputs.changes_detected == 'true'
id: merge-pr
run: gh pr merge --admin --merge --subject 'Merge formatting' --delete-branch
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}