This is an automated email from the ASF dual-hosted git repository.

orpiske 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 3e2d0a4  (chores) ci: fixed archive paths - removed non-existent path
3e2d0a4 is described below

commit 3e2d0a48932ec9f40cd98df93a6e7e4682ba1ee6
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Mar 31 21:22:21 2022 +0200

    (chores) ci: fixed archive paths - removed non-existent path
---
 .github/workflows/component-pr.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/component-pr.yaml 
b/.github/workflows/component-pr.yaml
index ad04d0b..901430d 100644
--- a/.github/workflows/component-pr.yaml
+++ b/.github/workflows/component-pr.yaml
@@ -80,14 +80,14 @@ jobs:
         if: |
           github.event_name == 'workflow_run'
         run: |
-          cat test-logs/results.txt >> $GITHUB_ENV
+          cat results.txt >> $GITHUB_ENV
       - uses: actions/github-script@v6
         if: |
           github.event_name == 'workflow_run'
         with:
           github-token: ${{ secrets.GITHUB_TOKEN }}
           script: |
-            let issue_number = 
Number(fs.readFileSync('./test-logs/pr_number'));
+            let issue_number = Number(fs.readFileSync('./pr_number'));
             
             github.rest.issues.createComment({
               issue_number: issue_number,

Reply via email to