Replace development with main

The development branch has been replaced with the main branch in GitHub.
Replaces references to development in docs, commands, configuration, and
workflows.

Signed-off-by: Jonathon Anderson <janderson@ciq.com>
This commit is contained in:
Jonathon Anderson
2023-11-25 00:27:52 -07:00
parent 9e0576df24
commit 4f41a569dd
6 changed files with 9 additions and 13 deletions

View File

@@ -13,8 +13,8 @@ fixing or enhancing.
## Before submitting a PR, make sure you have done the following:
- [ ] Signed off on all commits (e.g., using `git commit --signoff`) in agreement to the [DCO](DCO.txt)
- [ ] Read the [documentation for contributing to Warewulf](https://warewulf.org/docs/development/contributing/contributing.html)
- [ ] Added changes to the [CHANGELOG](https://github.com/hpcng/warewulf/blob/development/CHANGELOG.md) if necessary
- [ ] Updated [userdocs](https://github.com/hpcng/warewulf/tree/development/userdocs) if necessary
- [ ] Based this PR against the appropriate branch (typically [development](https://github.com/hpcng/warewulf/tree/development/userdocs))
- [ ] Added myself as a contributor to the [Contributors File](https://github.com/hpcng/warewulf/blob/development/CONTRIBUTORS.md)
- [ ] Read the [documentation for contributing to Warewulf](https://warewulf.org/docs/main/contributing/contributing.html)
- [ ] Added changes to the [CHANGELOG](https://github.com/hpcng/warewulf/blob/main/CHANGELOG.md) if necessary
- [ ] Updated [userdocs](https://github.com/hpcng/warewulf/tree/main/userdocs) if necessary
- [ ] Based this PR against the appropriate branch (typically [main](https://github.com/hpcng/warewulf/tree/main/userdocs))
- [ ] Added myself as a contributor to the [Contributors File](https://github.com/hpcng/warewulf/blob/main/CONTRIBUTORS.md)

View File

@@ -9,4 +9,4 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "daily"
target-branch: development
target-branch: main

View File

@@ -5,13 +5,11 @@ on:
push:
branches:
- main
- development
paths-ignore:
- 'docs/**'
pull_request:
branches:
- main
- development
paths-ignore:
- 'docs/**'

View File

@@ -5,14 +5,12 @@ on:
push:
branches:
- main
- development
- v4.*.x
paths:
- 'userdocs/**'
pull_request:
branches:
- main
- development
- v4.*.x
paths:
- 'userdocs/**'

View File

@@ -24,7 +24,7 @@ const initialTemplate = `# This is a Warewulf Template file.
# Network Config = {{.NetDevs.eth0.Ipaddr}}, {{.NetDevs.eth0.Hwaddr}}, etc.
#
# Go to the documentation pages for more information:
# https://warewulf.org/docs/development/contents/overlays.html
# https://warewulf.org/docs/main/contents/overlays.html
#
# Keep the following for better reference:
# ---

View File

@@ -9,7 +9,7 @@
project = 'Warewulf User Guide'
copyright = '2023, Warewulf Project Contributors'
author = 'Warewulf Project Contributors'
release = 'development'
release = 'main'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
@@ -39,7 +39,7 @@ html_context = {
'display_github': True,
'github_user': 'hpcng',
'github_repo': 'warewulf',
'github_version': 'development',
'github_version': 'main',
'conf_py_path': '/userdocs/',
}