You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by kl...@apache.org on 2023/05/19 09:29:14 UTC

[incubator-devlake] branch main updated: fix: github action import directory error (#5240)

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

klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new 77c0a8a2d fix: github action import directory error (#5240)
77c0a8a2d is described below

commit 77c0a8a2dbd8236a5f9a7c2043643a88e6474def
Author: 青湛 <0x...@gmail.com>
AuthorDate: Fri May 19 17:29:10 2023 +0800

    fix: github action import directory error (#5240)
---
 .github/{ => actions}/auto-cherry-pick/action.yml     | 0
 .github/{ => actions}/auto-cherry-pick/cherry-pick.sh | 0
 .github/workflows/auto-cherry-pick.yml                | 2 +-
 3 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/auto-cherry-pick/action.yml b/.github/actions/auto-cherry-pick/action.yml
similarity index 100%
rename from .github/auto-cherry-pick/action.yml
rename to .github/actions/auto-cherry-pick/action.yml
diff --git a/.github/auto-cherry-pick/cherry-pick.sh b/.github/actions/auto-cherry-pick/cherry-pick.sh
similarity index 100%
rename from .github/auto-cherry-pick/cherry-pick.sh
rename to .github/actions/auto-cherry-pick/cherry-pick.sh
diff --git a/.github/workflows/auto-cherry-pick.yml b/.github/workflows/auto-cherry-pick.yml
index 790a08305..d4f8f982b 100644
--- a/.github/workflows/auto-cherry-pick.yml
+++ b/.github/workflows/auto-cherry-pick.yml
@@ -25,7 +25,7 @@ on:
 
 jobs:
   cherry-pick:
-    if: github.event.pull_request.merged == true && startsWith(github.event.label.name, 'needs-cherry-pick-')
+    if: github.event.pull_request.merged == true && startsWith(github.event.label.name, 'needs-cherrypick-')
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3