File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 10
10
11
11
if : contains(github.event.issue.labels.*.name, 'autocoder-bot')
12
12
13
+ env :
14
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
+ REPOSITORY : ${{ github.repository }}
16
+ ISSUE_NUMBER : ${{ github.event.issue.number }}
17
+
13
18
steps :
14
19
- name : Checkout Repository
15
20
uses : actions/checkout@v4
20
25
- name : Run script.sh
21
26
id : generate_code
22
27
env :
23
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
- REPOSITORY : ${{ github.repository }}
25
- ISSUE_NUMBER : ${{ github.event.issue.number }}
26
28
OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
27
- run : ./scripts/script.sh $GITHUB_TOKEN $REPOSITORY $ISSUE_NUMBER $OPENAI_API_KEY
29
+ run : date +%s > testing.txt
30
+ # run: ./scripts/script.sh $GITHUB_TOKEN $REPOSITORY $ISSUE_NUMBER $OPENAI_API_KEY
28
31
29
32
- name : Create Pull Request
30
33
id : cpr
You can’t perform that action at this time.
0 commit comments