Skip to content

Commit b34014d

Browse files
authored
docs(community): document RSS feed availability (open-component-model#2321)
<!-- markdownlint-disable MD041 --> #### What this PR does / why we need it Document the availability of an RSS feed to stay updated #### Which issue(s) this PR fixes <!-- Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. --> #### Testing ##### How to test the changes <!-- Required files to test the changes: .ocmconfig ```yaml type: generic.config.ocm.software/v1 configurations: - type: credentials.config.ocm.software repositories: - repository: type: DockerConfig/v1 dockerConfigFile: "~/.docker/config.json" ``` Commands that test the change: ```bash ocm get cv xxx ocm transfer xxx ``` --> ##### Verification - [ ] I have added/updated tests for my changes (see [Test Requirements](../CONTRIBUTING.md#test-requirements)) - [ ] Tests pass locally (`task test` and `task test/integration` if applicable) - [ ] If touching multiple modules, `go work` is enabled (see `go.work`) - [ ] My changes do not decrease test coverage - [ ] I have tested the changes locally by running `ocm` --------- Signed-off-by: Fabian Burth <fabian.burth@sap.com>
1 parent 84047f0 commit b34014d

5 files changed

Lines changed: 11 additions & 36 deletions

File tree

.github/config/wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ routingslips
623623
rsa
624624
rsakeypair
625625
rsassa
626+
rss
626627
runnable
627628
runtime
628629
saas

website/config/_default/hugo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ defaultContentVersion = "latest"
3030
enable = true
3131

3232
[outputs]
33-
home = ["HTML", "RSS", "searchIndex"]
33+
home = ["HTML", "searchIndex"]
3434
section = ["HTML", "RSS", "SITEMAP"]
3535

3636
[outputFormats.searchIndex]

website/content/community/community.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ You can bring anything, including:
5555
- Concepts you would like to work on together
5656
- Questions you have about the community or upcoming work
5757

58+
### RSS Feed
59+
60+
Stay up to date with the latest OCM blog posts and announcements by subscribing to our [RSS feed](https://ocm.software/blog/index.xml). The feed is available in any RSS reader and provides a convenient way to follow project news without needing to check the website manually.
61+
5862
## Contributing
5963

6064
We welcome community contributions! Please see the [Contributing Guideline](https://github.com/open-component-model/.github/blob/main/CONTRIBUTING.md) for instructions on how to submit changes. If you are planning on making more elaborate or potentially controversial changes, please discuss them with the maintainers in the [Slack channel](https://kubernetes.slack.com/archives/C05UWBE8R1D) before sending a pull request.

website/layouts/_default/rss.xml

Lines changed: 0 additions & 35 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{{- with site.GetPage "section" "blog" -}}
2+
{{- with .OutputFormats.Get "rss" -}}
3+
<link rel="alternate" type="application/rss+xml" title="OCM Blog" href="{{ .Permalink }}">
4+
{{- end -}}
5+
{{- end -}}

0 commit comments

Comments
 (0)