-
Notifications
You must be signed in to change notification settings - Fork 81
40 lines (32 loc) · 1016 Bytes
/
lunaria.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
name: Lunaria
on:
# Trigger the workflow every time a pull request is opened or synchronized at the target `main` branch
# Using a different branch name? Replace `main` with your branch’s name
pull_request_target:
types: [opened, synchronize]
branches: [master]
# Allow this job to clone the repository and comment on the pull request
permissions:
contents: read
pull-requests: write
jobs:
lunaria-overview:
name: Generate Lunaria Overview
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Necessary for Lunaria to work properly
# Makes the action clone the entire git history
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Setup PNPM
uses: pnpm/action-setup@v3
- run: pnpm install
- name: Generate Lunaria Overview
uses: yanthomasdev/[email protected]