You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2021/03/19 12:26:34 UTC

[myfaces-tobago] branch master updated (993aa46 -> 0ba752d)

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

bommel pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git.


    from 993aa46  chore(deps-dev): bump rollup in /tobago-example/tobago-example-demo
     new c42a741  docs: add contributing info and code of conduct
     new 3e790ec  docs: add contributing info and code of conduct
     new cd533ec  docs: scope is optional in commit msg
     new 0ba752d  docs: reference to issue in commit msg

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CODE_OF_CONDUCT.md | 24 ++++++++++++++++++
 CONTRIBUTING.md    | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 96 insertions(+)
 create mode 100644 CODE_OF_CONDUCT.md
 create mode 100644 CONTRIBUTING.md

[myfaces-tobago] 03/04: docs: scope is optional in commit msg

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bommel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit cd533ec43d3dad8d44193e0224923b02e5e1df26
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Fri Mar 19 12:12:32 2021 +0100

    docs: scope is optional in commit msg
---
 CONTRIBUTING.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 81d9a23..3245c9c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -45,6 +45,8 @@ Examples
 - fix(select):
 - docs(menu):
 
+The `(<scope>)` field is optional.
+
 ##### Subject
 
 The subject contains a succinct description of the change:

[myfaces-tobago] 01/04: docs: add contributing info and code of conduct

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bommel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit c42a7415bd70cc1247219061cd0631ef99b31016
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Thu Feb 11 11:05:33 2021 +0100

    docs: add contributing info and code of conduct
---
 CODE_OF_CONDUCT.md | 24 +++++++++++++++++++
 CONTRIBUTING.md    | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 93 insertions(+)

diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000..2efe740
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,24 @@
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+
+# Code of Conduct
+
+* [Code of Conduct for The Apache Software Foundation][1]
+
+[1]: https://www.apache.org/foundation/policies/conduct.html
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..e183b8c
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,69 @@
+# (WIP) Contributing Info 
+
+## Semantic Commit Messages
+
+Inspired by [Git Commit Msg][git-commit-msg] 
+and [Angular Commit Message Format][angular-commit-message-format]
+
+
+### <a name="commit-message-format"></a> Commit Message Format
+
+Each commit message consists of a **header**, a **body** and a **footer**. The header has a special
+format that includes a **type**, a **scope**, and a **subject**:
+
+```html
+<type>(<scope>): <subject>
+<BLANK LINE>
+<body>
+<BLANK LINE>
+<footer>
+```
+
+> Any line of the commit message cannot be longer 100 characters!<br/>
+This allows the message to be easier to read on GitHub as well as in various Git tools.
+
+##### Type
+
+Must be one of the following:
+
+* **feat**: A new feature
+* **fix**: A bug fix
+* **docs**: Documentation only changes
+* **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing
+  semi-colons, etc)
+* **refactor**: A code change that neither fixes a bug nor adds a feature
+* **perf**: A code change that improves performance
+* **test**: Adding missing tests
+* **chore**: Changes to the auxiliary tools such as release scripts
+* **build**: Changes to the dependencies, devDependencies, or build tooling
+* **ci**: Changes to our Continuous Integration configuration
+
+##### Scope
+
+The scope could be anything that helps specify the scope (or feature) that is changing.
+
+Examples
+- fix(select):
+- docs(menu):
+
+##### Subject
+
+The subject contains a succinct description of the change:
+
+* use the imperative, present tense: "change" not "changed" nor "changes"
+* don't capitalize first letter
+* no period (.) at the end
+
+##### Body
+
+Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
+The body should include the motivation for the change and contrast this with previous behavior.
+
+##### Footer
+
+The footer should contain any information about **Breaking Changes** and is also the place to
+reference Jira issues that this commit **Closes**, **Fixes**, or **Relates to**.
+
+[git-commit-msg]: http://karma-runner.github.io/6.1/dev/git-commit-msg.html
+
+[angular-commit-message-format]: https://github.com/angular/material/blob/master/.github/CONTRIBUTING.md#-commit-message-format
\ No newline at end of file

[myfaces-tobago] 04/04: docs: reference to issue in commit msg

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bommel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 0ba752d6f3c183863691dda1ed2890108ce0686d
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Fri Mar 19 12:15:37 2021 +0100

    docs: reference to issue in commit msg
---
 CONTRIBUTING.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3245c9c..e2045c8 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -63,7 +63,7 @@ The body should include the motivation for the change and contrast this with pre
 ##### Footer
 
 The footer should contain any information about **Breaking Changes** and is also the place to
-reference Jira issues that this commit **Closes**, **Fixes**, or **Relates to**.
+reference Jira issues that this commit **Issue: TOBAGO-XXXX**.
 
 [git-commit-msg]: http://karma-runner.github.io/6.1/dev/git-commit-msg.html
 

[myfaces-tobago] 02/04: docs: add contributing info and code of conduct

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bommel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 3e790ecdd75b576913a23dbf6062c27fe9539857
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Fri Feb 12 18:05:09 2021 +0100

    docs: add contributing info and code of conduct
---
 CONTRIBUTING.md | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e183b8c..81d9a23 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,8 +2,7 @@
 
 ## Semantic Commit Messages
 
-Inspired by [Git Commit Msg][git-commit-msg] 
-and [Angular Commit Message Format][angular-commit-message-format]
+Inspired by [Git Commit Msg][git-commit-msg], [Angular Commit Message Format][angular-commit-message-format] and [Conventional Commits][conventional-commits]
 
 
 ### <a name="commit-message-format"></a> Commit Message Format
@@ -66,4 +65,6 @@ reference Jira issues that this commit **Closes**, **Fixes**, or **Relates to**.
 
 [git-commit-msg]: http://karma-runner.github.io/6.1/dev/git-commit-msg.html
 
-[angular-commit-message-format]: https://github.com/angular/material/blob/master/.github/CONTRIBUTING.md#-commit-message-format
\ No newline at end of file
+[angular-commit-message-format]: https://github.com/angular/material/blob/master/.github/CONTRIBUTING.md#-commit-message-format
+
+[conventional-commits]: https://www.conventionalcommits.org/en/v1.0.0/
\ No newline at end of file