Skip to content

Commit 87c8088

Browse files
authored
Merge branch 'all' into update_channels_list/2025_07
2 parents 69844eb + 100b4f1 commit 87c8088

File tree

7 files changed

+35
-3
lines changed

7 files changed

+35
-3
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "gitsubmodule"
3+
- package-ecosystem: gitsubmodule
44
directory: "/"
55
schedule:
6-
interval: "monthly"
6+
interval: daily
7+
- package-ecosystem: github-actions
8+
directory: "/.github/workflows/"
9+
schedule:
10+
interval: daily
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
name: "Merge Dependabot PR"
3+
4+
on:
5+
pull_request:
6+
types: [ opened, reopened ]
7+
branches: [ master ]
8+
9+
jobs:
10+
merge:
11+
if: github.event.pull_request.user.login == 'dependabot[bot]'
12+
permissions:
13+
contents: write
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: KeisukeYamashita/auto-pull-request-merge@v1
17+
with:
18+
pullRequestNumber: ${{ github.event.pull_request.number }}
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
labels: "dependencies,submodules"

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site/
2+
Gemfile.lock

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gem "github-pages", group: :jekyll_plugins

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ title: osdev.jp
33
description: osdev-jpでは、OS開発に有用な情報を収集し公開しています
44
logo: logo.png
55
markdown: GFM
6+
plugins:
7+
- jekyll-sitemap
8+
markdown: GFM

build.cmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
wsl bundle exec jekyll b

wiki

Submodule wiki updated from ae8cdc0 to c6378aa

0 commit comments

Comments
 (0)