From 47da1634c4767671c8f7abc9dc3d171a4790bf6e Mon Sep 17 00:00:00 2001 From: Marcus Hirt Date: Wed, 5 Feb 2020 15:23:43 +0100 Subject: [PATCH 1/2] 6684: Adding CONTRIBUTING.md file --- CONTRIBUTING.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..d0cf6e9498 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,45 @@ +# Contributing + +Thank you for considering contributing to the +[JDK Mission Control](https://openjdk.java.net/projects/jmc) project! For information +about contributing to [OpenJDK](https://openjdk.java.net/) projects, which include +JDK Mission Control, please see . + +## Pull Requests + +The JDK Mission Control project (JMC) gladly accepts contributions in the form of pull +requests on [GitHub](https://github.com/openjdk/jmc/pulls/). + +## Mailing List + +The mailing list for JDK Mission Control is `jmc-dev@openjdk.java.net`. See + for instructions +on how to subscribe of if you want to read the archives. + +## Issues + +You can find open issues to work on in the JMC project in the +[JDK Bug System](https://bugs.openjdk.java.net/): +. + +## Larger Contributions + +If you have a larger contribution in mind then we highly encourage you to first +discuss your changes on the JMC mailing list, `jmc-dev@openjdk.java.net`, +_before_ you start to write the code. + +## Slack + +The slack channel for JMC developers can be found here: + + +If you're working for a company already contributing, you can sign up here: + + +If not, ask for an invite in the jmc-dev mailing list. + +## Questions + +If you have a question or need help, please send an email to our mailing list +`jmc-dev@openjdk.java.net` or stop by the JMC slack channel. + From 8bfee00f27c8aeca588376b0a9b19861b932d236 Mon Sep 17 00:00:00 2001 From: Marcus Hirt Date: Mon, 10 Feb 2020 20:39:55 +0100 Subject: [PATCH 2/2] Adding information on commit message format --- CONTRIBUTING.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d0cf6e9498..bc94eb7ef0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,10 @@ JDK Mission Control, please see . ## Pull Requests The JDK Mission Control project (JMC) gladly accepts contributions in the form of pull -requests on [GitHub](https://github.com/openjdk/jmc/pulls/). +requests on [GitHub](https://github.com/openjdk/jmc/pulls/). Ensure that the commit +message refers to an existing JMC issue in the [JDK Bug System](https://bugs.openjdk.java.net/). +The format is "<bug id number>: Commit message". For example, for a PR for issue JMC-6789, the commit +message should be "6789: Commit message". ## Mailing List