Skip to content

Commit dc5eed7

Browse files
authored
fix(ci): proper zip file name
1 parent 86619b9 commit dc5eed7

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/pr-labeler.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ jobs:
5050
archive_format: 'zip',
5151
});
5252
var fs = require('fs');
53-
fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data));
53+
fs.writeFileSync('${{github.workspace}}/pr-id.zip', Buffer.from(download.data));
5454
- run: unzip pr-id.zip
5555

56-
- name: 'Excract PR id'
56+
- name: 'Exctract PR id'
57+
id: pr
5758
uses: actions/github-script@v7
5859
with:
5960
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)