-
Notifications
You must be signed in to change notification settings - Fork 56
34 lines (33 loc) · 1.06 KB
/
recent-activity-summary.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
---
name: Recent Activity Summary
on: # yamllint disable-line rule:truthy
workflow_dispatch: # Allow manual triggering
inputs:
version:
description: 'The version of the action to run'
required: true
default: 'v0.0.5-debug'
extra-commands:
description: 'Extra commands to run before the main action'
required: false
default: ''
jobs:
prs:
runs-on: ubuntu-latest
steps:
- name: Show inputs
run: echo "${{ toJSON(github.event.inputs) }}"
- name: Generate and Post Repository Summary
uses: akaihola/[email protected]
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
repo-name: '${{ github.repository }}'
project-name: 'Darker'
extra-packages: 'llm-openrouter'
# Optional inputs for debugging purposes:
verbose: '2'
dry-run: 'true'
output-content: '-'
extra-commands: '${{ inputs.extra-commands }}'
env:
OPENROUTER_KEY: '${{ secrets.OPENROUTER_KEY }}'