-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 1.04 KB
/
commentator.yml
File metadata and controls
35 lines (33 loc) · 1.04 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
name: Comments on GitHub issues
on:
workflow_dispatch:
inputs:
payload:
description: 'Serialized and escaped JSON describing what and where to comment.'
required: true
jobs:
comment:
runs-on: ubuntu-24.04
steps:
- name: 👀 Checkout
uses: actions/checkout@v4
- name: ➕ Add `bin` to GITHUB_PATH
run: echo "$(pwd)/bin" >> $GITHUB_PATH
- name: 🔨 Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: 🔨 Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: 📦 Install dependencies
run: pnpm install --ignore-scripts --frozen-lockfile
- name: ♻️ Restore caches
uses: ./.github/actions/expo-caches
id: expo-caches
- name: 💬 Comment on GitHub issues as github-actions bot
run: pnpm expotools commentator --payload "${{ github.event.inputs.payload }}"
env:
GITHUB_TOKEN: ${{ secrets.EXPO_BOT_GITHUB_TOKEN }}