You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by aa...@apache.org on 2022/06/17 10:30:19 UTC

[rocketmq-clients] branch master updated (05fa426 -> 9653dad)

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

aaronai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git


 discard 05fa426  Fix GitHub Action working directory for C#
     new 9653dad  Fix GitHub Action working directory for C#

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   (05fa426)
            \
             N -- N -- N   refs/heads/master (9653dad)

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:
 .github/workflows/main.yml | 39 ---------------------------------------
 1 file changed, 39 deletions(-)


[rocketmq-clients] 01/01: Fix GitHub Action working directory for C#

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

aaronai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git

commit 9653dad3d53040b830959576b945ff0d3d0f6ff5
Author: Aaron Ai <ya...@gmail.com>
AuthorDate: Fri Jun 17 18:30:11 2022 +0800

    Fix GitHub Action working directory for C#
---
 .github/workflows/main.yml | 40 +---------------------------------------
 1 file changed, 1 insertion(+), 39 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index cdea878..21d7242 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,41 +1,3 @@
-<<<<<<< HEAD
-# This is a basic workflow to help you get started with Actions
-
-name: CI
-
-# Controls when the workflow will run
-on:
-  # Triggers the workflow on push or pull request events but only for the master branch
-  push:
-    branches: [ main ]
-  pull_request:
-    branches: [ main ]
-
-  # Allows you to run this workflow manually from the Actions tab
-  workflow_dispatch:
-
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
-jobs:
-  # This workflow contains a single job called "build"
-  build:
-    # The type of runner that the job will run on
-    runs-on: ubuntu-latest
-
-    # Steps represent a sequence of tasks that will be executed as part of the job
-    steps:
-      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-      - uses: actions/checkout@v2
-      
-      - name: Setup Bazel
-        run: |
-          sudo apt-get -qq install npm
-          sudo npm install -g @bazel/bazelisk
-      - name: Use Bazel
-        if: matrix.os != 'windows'
-        run: bazel -h
-      - name: Compile All Targets
-        run: bazel build //...
-=======
 name: CI
 on: [push, pull_request]
 jobs:
@@ -51,7 +13,7 @@ jobs:
             5.0.x
             6.0.x
       - name: Build artifacts
+        working-directory: ./csharp
         run: |
           dotnet --version
           dotnet build
->>>>>>> csharp