Skip to content

Commit

Permalink
Merge pull request #95 from Okabe-Junya/v1
Browse files Browse the repository at this point in the history
Feature: Release v1.0.0
  • Loading branch information
Okabe-Junya authored Aug 19, 2024
2 parents d94e0f4 + 979bde0 commit a407c51
Show file tree
Hide file tree
Showing 69 changed files with 437 additions and 6,830 deletions.
29 changes: 0 additions & 29 deletions .bash_profile

This file was deleted.

7 changes: 0 additions & 7 deletions .config/coc/extensions/package.json

This file was deleted.

1 change: 0 additions & 1 deletion .config/fish/conf.d/00_fig_pre.fish

This file was deleted.

1 change: 0 additions & 1 deletion .config/fish/conf.d/99_fig_export.fish

This file was deleted.

1 change: 0 additions & 1 deletion .config/fish/conf.d/99_fig_post.fish

This file was deleted.

3 changes: 1 addition & 2 deletions git/.gitconfig → .config/git/.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
[init]
defaultBranch = main
[core]
excludesfile = ~/.gitignore_global
editor = nvim
editor = vim
[gitflow "branch"]
master = main
[push]
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion .config/iterm2/AppSupport

This file was deleted.

18 changes: 0 additions & 18 deletions .config/nvim/coc-settings.json

This file was deleted.

43 changes: 0 additions & 43 deletions .config/nvim/init.vim

This file was deleted.

Empty file removed .config/nvim/init/coc.vim
Empty file.
1 change: 0 additions & 1 deletion .config/nvim/init/git.vim

This file was deleted.

4 changes: 0 additions & 4 deletions .config/nvim/init/nerdtree.vim

This file was deleted.

10 changes: 0 additions & 10 deletions .config/nvim/init/setting.vim

This file was deleted.

16 changes: 0 additions & 16 deletions .config/starship/starship.toml

This file was deleted.

1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Okabe-Junya
21 changes: 21 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
area/github-management:
- changed-files:
- any-glob-to-any-file:
- ".github/**"

area/config:
- changed-files:
- any-glob-to-any-file:
- ".config/**"

area/zsh:
- changed-files:
- any-glob-to-any-file:
- ".zsh/**"
- ".zshrc"

area/documentation:
- changed-files:
- any-glob-to-any-file:
- "docs/*.md"
- "docs/*.txt"
60 changes: 40 additions & 20 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,55 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":timezone(Asia/Tokyo)",
"config:best-practices",
":prHourlyLimitNone",
":automergePatch",
":dependencyDashboard"
":automergeMinor",
":preserveSemverRanges"
],
"schedule": [
"after 3am on monday",
"before 6am on monday"
],
"schedule": ["after 3am and before 9am every weekday"],

"labels": ["dependencies", "renovate"],

"packageRules": [
{
"matchUpdateTypes": ["pin"],
"addLabels": ["pin"]
"matchUpdateTypes": [
"pin"
],
"addLabels": [
"renovate/pin"
]
},
{
"matchUpdateTypes": [
"major"
],
"addLabels": [
"renovate/major"
]
},
{
"matchUpdateTypes": ["major"],
"addLabels": ["major"]
"matchUpdateTypes": [
"minor"
],
"minimumReleaseAge": "5 days",
"addLabels": [
"renovate/minor"
]
},
{
"matchUpdateTypes": ["minor"],
"addLabels": ["minor"]
"matchUpdateTypes": [
"patch"
],
"minimumReleaseAge": "3 days",
"addLabels": [
"renovate/patch"
]
},
{
"matchUpdateTypes": ["patch"],
"addLabels": ["patch"],
"automerge": true
"matchDepTypes": [
"action"
],
"pinDigests": false
}
],
"dependencyDashboard": false,
"branchConcurrentLimit": 0
]
}
16 changes: 0 additions & 16 deletions .github/workflows/close_issues.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/dependency-review.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/docker-build.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: labeler

on: pull_request_target

jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
name: reviewdog
name: shellcheck

on:
pull_request:
branches:
- main

jobs:
shellcheck:
name: "reviewdog shellcheck"
name: reviewdog / shellcheck
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
path: "."
pattern: "*.sh"
exclude: "./.git/*" #
pattern: |
"*.sh"
"*.zsh"
exclude: "./.git/*"
check_all_files_with_shebangs: "false"
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: macos-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Run tests
run: ./install.zsh --non-interactive
shell: zsh {0}
timeout-minutes: 60
Loading

0 comments on commit a407c51

Please sign in to comment.