Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.access.redhat.com/ubi9/ubi:9.6-1758184894@sha256:dbc1e98d14a022542e45b5f22e0206d3f86b5bdf237b58ee7170c9ddd1b3a283

ARG SYNC2JIRA_GIT_REPO=https://github.com/release-engineering/Sync2Jira.git
ARG SYNC2JIRA_GIT_REF=master
ARG SYNC2JIRA_GIT_REF=main
ARG SYNC2JIRA_VERSION=

LABEL \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.sync-page
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.access.redhat.com/ubi9/ubi:9.6-1758184894@sha256:dbc1e98d14a022542e45b5f22e0206d3f86b5bdf237b58ee7170c9ddd1b3a283

ARG SYNC2JIRA_GIT_REPO=https://github.com/release-engineering/Sync2Jira.git
ARG SYNC2JIRA_GIT_REF=master
ARG SYNC2JIRA_GIT_REF=main
ARG SYNC2JIRA_VERSION=

LABEL \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sync2Jira

[![Documentation Status](https://readthedocs.org/projects/sync2jira/badge/?version=master)](https://sync2jira.readthedocs.io/en/master/?badge=master)
[![Documentation Status](https://readthedocs.org/projects/sync2jira/badge/?version=main)](https://sync2jira.readthedocs.io/en/main/?badge=main)
[![Coverage Status](https://coveralls.io/repos/github/release-engineering/Sync2Jira/badge.svg?branch=main)](https://coveralls.io/github/release-engineering/Sync2Jira?branch=main)
![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)

Expand Down Expand Up @@ -216,9 +216,9 @@ The following environment variables can be used to configure both tools:

Comprehensive documentation is available at [sync2jira.readthedocs.io](https://sync2jira.readthedocs.io/en/latest/):

- [Quick Start Guide](https://sync2jira.readthedocs.io/en/master/quickstart.html)
- [Configuration Reference](https://sync2jira.readthedocs.io/en/master/config-file.html)
- [Sync Page Usage](https://sync2jira.readthedocs.io/en/master/sync_page.html)
- [Quick Start Guide](https://sync2jira.readthedocs.io/en/main/quickstart.html)
- [Configuration Reference](https://sync2jira.readthedocs.io/en/main/config-file.html)
- [Sync Page Usage](https://sync2jira.readthedocs.io/en/main/sync_page.html)


## License
Expand Down
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
source_suffix = ".rst"

# The master toctree document.
master_doc = "index"
index = "index"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -138,15 +138,15 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, "Sync2Jira.tex", "Sync2Jira Documentation", "Ralph Bean", "manual"),
(index, "Sync2Jira.tex", "Sync2Jira Documentation", "Ralph Bean", "manual"),
]


# -- Options for manual page output ------------------------------------------

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [(master_doc, "sync2jira", "Sync2Jira Documentation", [author], 1)]
man_pages = [(index, "sync2jira", "Sync2Jira Documentation", [author], 1)]


# -- Options for Texinfo output ----------------------------------------------
Expand All @@ -156,7 +156,7 @@
# dir menu entry, description, category)
texinfo_documents = [
(
master_doc,
index,
"Sync2Jira",
"Sync2Jira Documentation",
author,
Expand Down