You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by le...@apache.org on 2022/07/26 02:49:12 UTC

[incubator-seatunnel] branch dev updated: [CI]Ignore the check when the deadlink-check status code is 403 (#2267)

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

leo65535 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new f0e05a34b [CI]Ignore the check when the deadlink-check status code is 403 (#2267)
f0e05a34b is described below

commit f0e05a34ba4b813bf499efaa6e044aa682bbf795
Author: Kirs <ki...@apache.org>
AuthorDate: Tue Jul 26 10:49:06 2022 +0800

    [CI]Ignore the check when the deadlink-check status code is 403 (#2267)
    
    * [CI]Ignore the check when the deadlink-check status code is 403
    
    Some websites will judge the robot, so it may return a 403 error, but it is actually accessible.
    
    * Closed Merge button
---
 .asf.yaml | 2 +-
 .dlc.json | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 15feb91b4..5f53dec81 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -29,7 +29,7 @@ github:
     - etl-framework
   enabled_merge_buttons:
     squash: true
-    merge: true
+    merge: false
     rebase: false
   protected_branches:
     dev:
diff --git a/.dlc.json b/.dlc.json
index 8c7ba9ed0..b638ba401 100644
--- a/.dlc.json
+++ b/.dlc.json
@@ -29,6 +29,7 @@
   "aliveStatusCodes": [
     0,
     200,
-    401
+    401,
+    403
   ]
 }