This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push:
new 10709f3 [fix](github-action) fix the action of
set-label-based-on-pr-title (#7758)
10709f3 is described below
commit 10709f315ae8bd3e096f4553521830be323954c3
Author: jakevin <[email protected]>
AuthorDate: Fri Jan 14 09:20:42 2022 +0800
[fix](github-action) fix the action of set-label-based-on-pr-title (#7758)
---
.github/workflows/auto-label-title.yml | 115 +++++++++++++++++----------------
1 file changed, 60 insertions(+), 55 deletions(-)
diff --git a/.github/workflows/auto-label-title.yml
b/.github/workflows/auto-label-title.yml
index 6ccd58c..83a770c 100644
--- a/.github/workflows/auto-label-title.yml
+++ b/.github/workflows/auto-label-title.yml
@@ -26,58 +26,63 @@ jobs:
auto-filling-pull-request:
runs-on: ubuntu-latest
steps:
- - name: Add labels based on PR title
- uses: ./.github/actions/set-label-based-on-pr-title
- with:
- words: >-
- [fix];
- [feature];
- [improvement];
- [docs];
- [typo];
- [refactor];
- [performance];
- [test];
- [chore];
- [revert];
- [community];
-
- (vectorized);
- (planner);
- (storage);
- (load);
- (stream-load);
- (broker-load);
- (routine-load);
- (export);
- (spark-connector);
- (flink-connector);
- (datax);
- (config)
-
- labels: >-
- kind/fix;
- kind/feature;
- kind/improvement;
- kind/docs;
- kind/typo;
- kind/refactor;
- kind/performance;
- kind/test
- kind/chore;
- kind/revert;
- kind/community;
-
- area/vectorized;
- area/planner;
- area/storage;
- area/load;
- area/stream-load;
- area/broker-load;
- area/routine-load;
- area/export;
- area/spark-connector;
- area/flink-connector;
- area/datax;
- area/config
- repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
+ uses: actions/checkout@v2
+ with:
+ persist-credentials: false
+ submodules: recursive
+ - name: Add labels based on PR title
+ uses: ./.github/actions/set-label-based-on-pr-title
+ with:
+ words: >-
+ [fix];
+ [feature];
+ [improvement];
+ [docs];
+ [typo];
+ [refactor];
+ [performance];
+ [test];
+ [chore];
+ [revert];
+ [community];
+
+ (vectorized);
+ (planner);
+ (storage);
+ (load);
+ (stream-load);
+ (broker-load);
+ (routine-load);
+ (export);
+ (spark-connector);
+ (flink-connector);
+ (datax);
+ (config)
+
+ labels: >-
+ kind/fix;
+ kind/feature;
+ kind/improvement;
+ kind/docs;
+ kind/typo;
+ kind/refactor;
+ kind/performance;
+ kind/test
+ kind/chore;
+ kind/revert;
+ kind/community;
+
+ area/vectorized;
+ area/planner;
+ area/storage;
+ area/load;
+ area/stream-load;
+ area/broker-load;
+ area/routine-load;
+ area/export;
+ area/spark-connector;
+ area/flink-connector;
+ area/datax;
+ area/config
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]