This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new dc5eed7e4903 fix(ci): proper zip file name
dc5eed7e4903 is described below
commit dc5eed7e4903173b717d2e03e7fbe9df91313169
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Wed Feb 18 11:19:42 2026 +0100
fix(ci): proper zip file name
---
.github/workflows/pr-labeler.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml
index f74985e2ba07..cd5b46779cfc 100644
--- a/.github/workflows/pr-labeler.yml
+++ b/.github/workflows/pr-labeler.yml
@@ -50,10 +50,11 @@ jobs:
archive_format: 'zip',
});
var fs = require('fs');
- fs.writeFileSync('${{github.workspace}}/pr.zip',
Buffer.from(download.data));
+ fs.writeFileSync('${{github.workspace}}/pr-id.zip',
Buffer.from(download.data));
- run: unzip pr-id.zip
- - name: 'Excract PR id'
+ - name: 'Exctract PR id'
+ id: pr
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}