diff options
author | Nick Vatamaniuc <vatamane@gmail.com> | 2022-06-07 16:30:44 -0400 |
---|---|---|
committer | Nick Vatamaniuc <nickva@users.noreply.github.com> | 2022-06-07 17:42:30 -0400 |
commit | fa5ef27e24a4f24ea0cbb8ca0474e0b169131b8c (patch) | |
tree | 13d6a228464dfb41cf89f8134efeb02206cfdc25 | |
parent | 0156a55012b76adb652c11032596d9801c71665e (diff) | |
download | couchdb-fdbmain.tar.gz |
Post main -> fdbmain movefdbmain
Remove .asf.yaml and rename some CI references to point to fdbmain
-rw-r--r-- | .asf.yaml | 73 | ||||
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | build-aux/Jenkinsfile.full | 2 |
3 files changed, 3 insertions, 76 deletions
diff --git a/.asf.yaml b/.asf.yaml deleted file mode 100644 index 7414aaa99..000000000 --- a/.asf.yaml +++ /dev/null @@ -1,73 +0,0 @@ -# see https://cwiki.apache.org/confluence/display/INFRA/git+-+.asf.yaml+features#git.asf.yamlfeatures-GitHubsettings - -github: - description: "Seamless multi-master syncing database with an intuitive HTTP/JSON API, designed for reliability" - homepage: https://couchdb.apache.org/ - labels: - - database - - content - - network-server - - http - - cloud - - erlang - - javascript - - couchdb - - big-data - - network-client - features: - issues: true - projects: true - enabled_merge_buttons: - squash: true - rebase: true - merge: true - protected_branches: - main: - required_status_checks: - strict: true - contexts: - - continuous-integration/jenkins/pr-merge - 3.x: - required_status_checks: - strict: true - contexts: - - continuous-integration/jenkins/pr-merge - 3.1.x: - required_status_checks: - strict: true - 3.0.x: - required_status_checks: - strict: true - 2.3.x: - required_status_checks: - strict: true - 2.1.x: - required_status_checks: - strict: true - 2.0.x: - required_status_checks: - strict: true - 1.6.x: - required_status_checks: - strict: true - 1.5.x: - required_status_checks: - strict: true - 1.4.x: - required_status_checks: - strict: true - 1.3.x: - required_status_checks: - strict: true - 1.x.x: - required_status_checks: - strict: true - -notifications: - commits: commits@couchdb.apache.org - issues: notifications@couchdb.apache.org - pullrequests: notifications@couchdb.apache.org - # This would send new/closed PR notifications to dev@ - #pullrequests_status: dev@couchdb.apache.org - # This would send individual PR comments/reviews to notifications@ - #pullrequests_comment: notifications@couchdb.apache.org diff --git a/README.rst b/README.rst index fc13b4da2..8967f318c 100644 --- a/README.rst +++ b/README.rst @@ -5,8 +5,8 @@ Apache CouchDB README | |1| | +-----+ -.. |1| image:: https://ci-couchdb.apache.org/job/jenkins-cm1/job/FullPlatformMatrix/job/main/badge/icon?subject=main%20build - :target: https://ci-couchdb.apache.org/blue/organizations/jenkins/jenkins-cm1%2FFullPlatformMatrix/activity?branch=main +.. |1| image:: https://ci-couchdb.apache.org/job/jenkins-cm1/job/FullPlatformMatrix/job/fdbmain/badge/icon?subject=fdbmain%20build + :target: https://ci-couchdb.apache.org/blue/organizations/jenkins/jenkins-cm1%2FFullPlatformMatrix/activity?branch=fdbmain Installation ------------ diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full index 26cec87e4..54248cc37 100644 --- a/build-aux/Jenkinsfile.full +++ b/build-aux/Jenkinsfile.full @@ -381,7 +381,7 @@ pipeline { stage('Publish') { when { - expression { return env.BRANCH_NAME ==~ /main|2.*.x|3.*.x|4.*.x|jenkins-.*/ } + expression { return env.BRANCH_NAME ==~ /fdbmain|main|2.*.x|3.*.x|4.*.x|jenkins-.*/ } } agent { |