Skip to content

Commit

Permalink
Merge pull request #2613 from chipsalliance/maintenance-mode
Browse files Browse the repository at this point in the history
Maintenance mode
  • Loading branch information
jackkoenig committed Mar 15, 2023
2 parents 6a999e3 + 7262d5a commit 4575518
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
10 changes: 9 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<!--
********** NOTICE **********
This repository is only accepting bug fixes
-->

### Contributor Checklist

- [ ] Did you add Scaladoc to every public function/method?
Expand Down Expand Up @@ -44,7 +52,7 @@ Text from here to the end of the body will be considered for inclusion in the re

### Reviewer Checklist (only modified by reviewer)
- [ ] Did you add the appropriate labels?
- [ ] Did you mark the proper milestone (1.2.x, 1.3.0, 1.4.0) ?
- [ ] Did you mark the proper milestone (1.6.x, 1.5.x) ?
- [ ] Did you review?
- [ ] Did you check whether all relevant Contributor checkboxes have been checked?
- [ ] Did you mark as `Please Merge`?
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- master
- 1.6.x
- 1.5.x
- 1.4.x
- 1.3.x
Expand Down
8 changes: 4 additions & 4 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pull_request_rules:
- status-success=all tests passed
- '#approved-reviews-by>=1'
- '#changes-requested-reviews-by=0'
- base=master
- base=1.6.x
- label="Please Merge"
- label!="DO NOT MERGE"
- label!="bp-conflict"
Expand All @@ -20,7 +20,7 @@ pull_request_rules:
- name: backport to 1.5.x
conditions:
- merged
- base=master
- base=1.6.x
- milestone=1.5.x
actions:
backport:
Expand All @@ -36,7 +36,7 @@ pull_request_rules:
- name: backport to 1.4.x, 1.5.x
conditions:
- merged
- base=master
- base=1.6.x
- milestone=1.4.x
actions:
backport:
Expand All @@ -53,7 +53,7 @@ pull_request_rules:
- name: backport to 1.3.x, 1.4.x, 1.5.x
conditions:
- merged
- base=master
- base=1.6.x
- milestone=1.3.x
actions:
backport:
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# This project is in maintenance mode

Pull Requests should only be made for bug fixes against versions 1.6 and below (Chisel 3.6 and below).

Please see [CIRCT](https://github.com/llvm/circt) for the next generation FIRRTL compiler.
Also see [Chisel](https://github.com/chipsalliance/chisel).

---

![FIRRTL](https://raw.githubusercontent.com/freechipsproject/firrtl/master/doc/images/firrtl_logo.svg?sanitize=true)

---
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ lazy val firrtlSettings = Seq(
)

lazy val mimaSettings = Seq(
mimaPreviousArtifacts := Set()
mimaPreviousArtifacts := Set("edu.berkeley.cs" %% "firrtl" % "1.6.0-RC2")
)

lazy val protobufSettings = Seq(
Expand Down Expand Up @@ -152,7 +152,7 @@ lazy val docSettings = Seq(
"-doc-source-url", {
val branch =
if (version.value.endsWith("-SNAPSHOT")) {
"master"
"1.6.x"
} else {
s"v${version.value}"
}
Expand Down

0 comments on commit 4575518

Please sign in to comment.