-
Notifications
You must be signed in to change notification settings - Fork 4
65 lines (51 loc) · 1.51 KB
/
analyze.yaml
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
name: Analyze Token
on:
pull_request:
branches:
- master
jobs:
analyze:
runs-on: ubuntu-latest
name: Analyze Token
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2 # Use the latest v2 for setup-node
with:
node-version: 18
- name: Install dependencies
run: npm install
- id: analyze
name: Run Analysis
run: |
npm run analyze
if [ -f summary.txt ]; then
echo "SKIP=false" >> "$GITHUB_ENV"
else
echo "SKIP=true" >> "$GITHUB_ENV"
fi
- name: Comment on PR
if: env.SKIP == 'false'
uses: mshick/add-pr-comment@v2
with:
message-path: ./summary.txt
- name: Update build
if: env.SKIP == 'false'
run: |
npm run build
- name: Commit changes
if: env.SKIP == 'false'
run: |
git config --global user.name "GitHub Action"
git config --global user.email "[email protected]"
# Get the current branch name
BRANCH_NAME=${GITHUB_HEAD_REF}
git fetch origin $BRANCH_NAME
git checkout $BRANCH_NAME
git add .
git commit -m "Automated build update"
git rebase origin/$BRANCH_NAME
git push origin HEAD:$BRANCH_NAME
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}