Skip to content

Commit 820d63b

Browse files
committed
Repo dev branch renamed to development
1 parent d4e235d commit 820d63b

File tree

6 files changed

+19
-41
lines changed

6 files changed

+19
-41
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`{Please select 'base: dev' as target branch above! (you can delete this line)}`
1+
`{Please select 'base: development' as target branch above! (you can delete this line)}`
22

33
<!--- Provide a general summary of your changes in the Title above -->
44

.github/dependabot.yml

Lines changed: 4 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ updates:
77
interval: "weekly"
88
day: saturday
99
time: "10:00"
10-
target-branch: dev
10+
target-branch: development
1111
reviewers:
1212
- "pi-hole/docker-maintainers"
1313
- package-ecosystem: "docker"
@@ -16,7 +16,7 @@ updates:
1616
interval: "weekly"
1717
day: saturday
1818
time: "10:00"
19-
target-branch: dev
19+
target-branch: development
2020
reviewers:
2121
- "pi-hole/docker-maintainers"
2222
- package-ecosystem: pip
@@ -26,35 +26,6 @@ updates:
2626
day: saturday
2727
time: "10:00"
2828
open-pull-requests-limit: 10
29-
target-branch: dev
29+
target-branch: development
3030
reviewers:
31-
- "pi-hole/docker-maintainers"
32-
# Maintain dependencies for GitHub Actions development-v6
33-
- package-ecosystem: "github-actions"
34-
directory: "/"
35-
schedule:
36-
interval: "weekly"
37-
day: saturday
38-
time: "10:00"
39-
target-branch: development-v6
40-
reviewers:
41-
- "pi-hole/docker-maintainers"
42-
- package-ecosystem: "docker"
43-
directory: "/src/"
44-
schedule:
45-
interval: "weekly"
46-
day: saturday
47-
time: "10:00"
48-
target-branch: development-v6
49-
reviewers:
50-
- "pi-hole/docker-maintainers"
51-
- package-ecosystem: pip
52-
directory: "/test"
53-
schedule:
54-
interval: weekly
55-
day: saturday
56-
time: "10:00"
57-
open-pull-requests-limit: 10
58-
target-branch: development-v6
59-
reviewers:
60-
- "pi-hole/docker-maintainers"
31+
- "pi-hole/docker-maintainers"

.github/workflows/build-and-publish.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
- cron: "0 5 * * *"
55
push:
66
branches:
7-
- dev
7+
- development
88
release:
99
types: [published]
1010

@@ -40,7 +40,7 @@ jobs:
4040
if: github.event_name == 'schedule'
4141
uses: actions/checkout@v4
4242
with:
43-
ref: dev
43+
ref: development
4444

4545
- name: Docker meta
4646
id: meta
@@ -113,7 +113,14 @@ jobs:
113113
- build
114114
steps:
115115
- name: Checkout Repo
116+
if: github.event_name != 'schedule'
117+
uses: actions/checkout@v4
118+
119+
- name: Checkout dev branch if scheduled
120+
if: github.event_name == 'schedule'
116121
uses: actions/checkout@v4
122+
with:
123+
ref: development
117124

118125
- name: Download digests
119126
uses: actions/download-artifact@v4

.github/workflows/sync-back-to-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v4
1515
- name: Opening pull request
16-
run: gh pr create -B dev -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'internal'
16+
run: gh pr create -B development -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'internal'
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Please review the following before opening a pull request (PR) to help your PR go smoothly:
44

5-
* Code changes go to the `dev` branch first
6-
* To ensure proper testing and quality control, target any code change pull requests against `dev` branch.
5+
* Code changes go to the `development` branch first
6+
* To ensure proper testing and quality control, target any code change pull requests against `development` branch.
77

88
* Make sure the tests pass
99
* Take a look at [TESTING.md](test/TESTING.md) to see how to run tests locally so you do not have to push all your code to a PR and have GitHub Actions run it.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ The Date-based (including incremented "Patch" versions) do not relate to any kin
175175
| `latest` | Always latest release |
176176
| `2022.04.0` | Date-based release |
177177
| `2022.04.1` | Second release in a given month |
178-
| `dev` | Similar to `latest`, but for the development branch (pushed occasionally) |
178+
| `development` | Similar to `latest`, but for the development branch (pushed occasionally) |
179179
| `*beta` | Early beta releases of upcoming versions - here be dragons |
180-
| `nightly` | Like `dev` but pushed every night and pulls from the latest `development` branches of the core Pi-hole components (Pi-hole, web, FTL) |
180+
| `nightly` | Like `development` but pushed every night and pulls from the latest `development` branches of the core Pi-hole components (Pi-hole, web, FTL) |
181181

182182
## Upgrading, Persistence, and Customizations
183183

0 commit comments

Comments
 (0)