Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
diakogiannis authored and aalmiray committed Aug 3, 2022
1 parent c9d4272 commit 517fa84
Showing 1 changed file with 60 additions and 1 deletion.
61 changes: 60 additions & 1 deletion docs/modules/configuration/pages/announce/twitter.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ include::partial$announce/yaml/common-head.adoc[]
# Review the available xref:configuration:name-templates.adoc[].
# icon:dot-circle[] icon:file-alt[]
status: 'πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}'
# The announcement messages.
# Review the available xref:configuration:name-templates.adoc[].
# icon:dot-circle[] icon:file-alt[]
statuses:
- 'πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}'
- 'New and exciting features added to {{projectNameCapitalized}} {{projectVersion}}'
# Path to a template file that contains a list of statuses.
# Review the available xref:configuration:name-templates.adoc[].
# icon:dot-circle[] icon:file-alt[]
statusTemplate: path/to/template/twitter.tpl
----
--
TOML::
Expand Down Expand Up @@ -84,6 +96,16 @@ include::partial$announce/toml/common-head.adoc[]
# Review the available xref:configuration:name-templates.adoc[].
# icon:dot-circle[] icon:file-alt[]
status = "πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}"
# The announcement message.
# Review the available xref:configuration:name-templates.adoc[].
# icon:dot-circle[] icon:file-alt[]
statuses = ["πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}", "New and exciting featurer added to {{projectNameCapitalized}} {{projectVersion}}"]
# Path to a template file that contains a list of statuses.
# Review the available xref:configuration:name-templates.adoc[].
# icon:dot-circle[] icon:file-alt[]
statusTemplate = "path/to/template/twitter.tpl"
----
--
JSON::
Expand Down Expand Up @@ -122,6 +144,17 @@ include::partial$announce/json/common-head.adoc[]
// Review the available xref:configuration:name-templates.adoc[].
// icon:dot-circle[] icon:file-alt[]
"status": "πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}"
// The announcement message.
// Review the available xref:configuration:name-templates.adoc[].
// icon:dot-circle[] icon:file-alt[]
"statuses": [
"πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}","New and exciting featurer added to {{projectNameCapitalized}} {{projectVersion}}"],
// Path to a template file that contains a list of statuses.
// Review the available xref:configuration:name-templates.adoc[].
// icon:dot-circle[] icon:file-alt[]
"statusTemplate": "path/to/template/twitter.tpl"
include::partial$announce/json/common-footer.adoc[]
----
--
Expand Down Expand Up @@ -164,13 +197,29 @@ include::partial$announce/maven/common-head.adoc[]
icon:exclamation-triangle[] icon:eye-slash[]
-->
<accessTokenSecret>__DO_NOT_SET_HERE__</accessTokenSecret>
<!--
The announcement message.
Review the available xref:configuration:name-templates.adoc[].
icon:dot-circle[] icon:file-alt[]
-->
<status>πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}</status>
<!--
The announcement message.
Review the available xref:configuration:name-templates.adoc[].
icon:dot-circle[] icon:file-alt[]
-->
<statuses>
<status>πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}</status>
<status>New and exciting featurer added to {{projectNameCapitalized}} {{projectVersion}}</status>
</statuses>
<!-- Path to a template file that contains a list of statuses.
Review the available xref:configuration:name-templates.adoc[].
icon:dot-circle[] icon:file-alt[]
-->
<statusTemplate>path/to/template/twitter.tpl</statusTemplate>
include::partial$announce/maven/common-footer.adoc[]
----
--
Expand Down Expand Up @@ -210,6 +259,16 @@ include::partial$announce/gradle/common-head.adoc[]
// Review the available xref:configuration:name-templates.adoc[].
// icon:dot-circle[] icon:file-alt[]
status = 'πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}'
// The announcement message.
// Review the available xref:configuration:name-templates.adoc[].
// icon:dot-circle[] icon:file-alt[]
statuses = [
'πŸš€ {{projectNameCapitalized}} {{projectVersion}} has been released! {{releaseNotesUrl}}','New and exciting featurer added to {{projectNameCapitalized}} {{projectVersion}}']
// Path to a template file that contains a list of statuses.
// Review the available xref:configuration:name-templates.adoc[].
// icon:dot-circle[] icon:file-alt[]
statusTemplate = 'path/to/template/twitter.tpl'
include::partial$announce/gradle/common-footer.adoc[]
----
--
Expand Down

0 comments on commit 517fa84

Please sign in to comment.