There was an error while loading. Please reload this page.
1 parent 4cbdc7e commit 3cb2227Copy full SHA for 3cb2227
1 file changed
.github/workflows/pullfrog.yml
@@ -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
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
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
30
+ prompt: ${{ inputs.prompt }}
0 commit comments