-
-
Notifications
You must be signed in to change notification settings - Fork 18
69 lines (60 loc) · 1.76 KB
/
sitemap.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Generate Sitemap
on:
workflow_dispatch:
push:
branches:
- master
paths:
- "config.ts"
jobs:
generate-sitemap:
name: Generate Site Map
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
- name: Cache node modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules-v2
with:
path: |
node_modules
key: "${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}"
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
- name: Install
run: yarn --prefer-offline --frozen-lockfile install
- name: Build
run: yarn build
- name: Generate Sitemap
run: yarn sitemap
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email ""
- name: Create New Branch
run: |
git checkout -b sitemap-update
git add -A
git commit -m "Update sitemap"
git push origin HEAD --force
- name: Create or Update Pull Request
run: |
gh auth setup-git
gh_pr_up() {
PR_EXISTS=$(gh pr list --head sitemap-update | wc -l)
if [ "$PR_EXISTS" -eq "0" ]; then
gh pr create "$@"
else
gh pr edit "$@"
fi
}
gh_pr_up --title "Update Sitemap" --body "Automatically generated sitemap update" --base master --label "bot" --head sitemap-update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}