Skip to content

Commit 3cb2227

Browse files
authored
Add Pullfrog workflow for agent execution
1 parent 4cbdc7e commit 3cb2227

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/pullfrog.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Pullfrog
2+
run-name: ${{ inputs.name || github.workflow }}
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
prompt:
7+
type: string
8+
description: Agent prompt
9+
name:
10+
type: string
11+
description: Run name
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
pullfrog:
18+
runs-on: ubuntu-latest
19+
permissions:
20+
id-token: write
21+
contents: read
22+
steps:
23+
- name: Checkout code
24+
uses: actions/checkout@v6
25+
with:
26+
fetch-depth: 1
27+
- name: Run agent
28+
uses: pullfrog/pullfrog@v0
29+
with:
30+
prompt: ${{ inputs.prompt }}

0 commit comments

Comments
 (0)