You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/11/17 08:47:09 UTC

[skywalking-infra-e2e] branch bugfix/logdir updated (67c308b -> 9e9546c)

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

kezhenxu94 pushed a change to branch bugfix/logdir
in repository https://gitbox.apache.org/repos/asf/skywalking-infra-e2e.git.


 discard 67c308b  Add log dir to GitHub Action output
     new 9e9546c  Add log dir to GitHub Action output

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (67c308b)
            \
             N -- N -- N   refs/heads/bugfix/logdir (9e9546c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 action.yaml | 3 +++
 1 file changed, 3 insertions(+)

[skywalking-infra-e2e] 01/01: Add log dir to GitHub Action output

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch bugfix/logdir
in repository https://gitbox.apache.org/repos/asf/skywalking-infra-e2e.git

commit 9e9546cacadc699a9cac042ad7fba0ba2d66c3f9
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Wed Nov 17 16:13:36 2021 +0800

    Add log dir to GitHub Action output
---
 action.yaml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/action.yaml b/action.yaml
index 20f91e9..05fb7df 100644
--- a/action.yaml
+++ b/action.yaml
@@ -24,7 +24,13 @@ inputs:
   log-dir:
     description: The container logs directory
     required: false
-
+outputs:
+  log-case:
+    description: The name of the test case
+    value: ${{ steps.e2e-dir-generator.outputs.log-case }}
+  log-dir:
+    description: The directory of the container logs
+    value: ${{ steps.e2e-dir-generator.outputs.log }}
 runs:
   using: "composite"
   steps:
@@ -75,4 +81,4 @@ runs:
         e2e run \
           -c "${{ inputs.e2e-file }}" \
           -w "${{ steps.e2e-dir-generator.outputs.work }}" \
-          -l "${{ steps.e2e-dir-generator.outputs.log-case }}"
\ No newline at end of file
+          -l "${{ steps.e2e-dir-generator.outputs.log-case }}"