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 806ec23 (chores) ci: fixed archive paths
806ec23 is described below
commit 806ec239a35225056fd2a0031a9ac01a4f73aedb
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Mar 31 20:18:04 2022 +0200
(chores) ci: fixed archive paths
---
.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 b5ed688..ad04d0b 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 automated-build-log/results.txt >> $GITHUB_ENV
+ cat test-logs/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('./automated-build-log/pr_number'));
+ let issue_number =
Number(fs.readFileSync('./test-logs/pr_number'));
github.rest.issues.createComment({
issue_number: issue_number,