Skip to content

Commit 78da31a

Browse files
committed
Replace oldbook => newbook
1 parent c46ad55 commit 78da31a

File tree

1,638 files changed

+106736
-290443
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,638 files changed

+106736
-290443
lines changed

.dockerignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.exrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: pip
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
ignore:
9+
- dependency-name: sphinx
10+
versions:
11+
- ">= 3.a"
12+
- "< 4"
13+
- package-ecosystem: github-actions
14+
directory: "/"
15+
schedule:
16+
interval: weekly
17+
open-pull-requests-limit: 10

.github/workflows/ci.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/deploy_3.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: 'deploy_3'
3+
4+
on:
5+
push:
6+
branches:
7+
- 3.x
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
13+
jobs:
14+
deploy:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Cloning repo
18+
uses: actions/checkout@v5
19+
with:
20+
fetch-depth: 0
21+
22+
- name: Push to dokku
23+
uses: dokku/github-action@master
24+
with:
25+
branch: '3.x'
26+
git_remote_url: 'ssh://dokku@apps.cakephp.org:22/newbook-3'
27+
git_push_flags: '-f'
28+
ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }}

.github/workflows/deploy_docs_3x.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/stale.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Mark stale issues and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
stale:
12+
13+
permissions:
14+
issues: write # for actions/stale to close stale issues
15+
pull-requests: write # for actions/stale to close stale PRs
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/stale@v10
20+
with:
21+
repo-token: ${{ secrets.GITHUB_TOKEN }}
22+
stale-issue-message: 'This issue is stale because it has been open for 120 days with no activity. Remove the `stale` label or comment or this will be closed in 15 days'
23+
stale-pr-message: 'This pull request is stale because it has been open 120 days with no activity. Remove the `stale` label or comment on this issue, or it will be closed in 15 days'
24+
stale-issue-label: 'stale'
25+
stale-pr-label: 'stale'
26+
days-before-stale: 120
27+
days-before-close: 15
28+
exempt-issue-labels: 'pinned'
29+
exempt-pr-labels: 'pinned'

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
# Project specific files #
22
##########################
3-
*.pyc
4-
/build
5-
*/_build/*
3+
.vitepress/dist
4+
.vitepress/cache
5+
.vitepress/.temp
6+
/node_modules/
7+
.temp/
68

79
# IDE and editor specific files #
810
#################################
911
/nbproject
1012
.idea
1113
.project
1214
.vscode
15+
.zed
1316

1417
# OS generated files #
1518
######################

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)