-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from 9renpoto/feature
feat: add linters
- Loading branch information
Showing
10 changed files
with
163 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# .github/release.yml | ||
|
||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release | ||
authors: | ||
- octocat | ||
categories: | ||
- title: ':bug: Type: Bug' | ||
labels: | ||
- 'bug' | ||
- title: ':memo: Documentation' | ||
labels: | ||
- 'documentation' | ||
- title: ':rocket: Type: Feature' | ||
labels: | ||
- 'enhancement' | ||
- title: Other Changes | ||
labels: | ||
- '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: actionlint | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/actions/**' | ||
- '.github/workflows/**' | ||
|
||
jobs: | ||
actionlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: reviewdog/action-actionlint@v1 | ||
with: | ||
reporter: github-pr-review | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Bump version (cron) | ||
|
||
on: | ||
schedule: | ||
- cron: '15 3 * * TUE' | ||
|
||
jobs: | ||
scheduled_bump: | ||
uses: ./.github/workflows/bump.yml | ||
secrets: inherit | ||
with: | ||
semver: minor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Bump version | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
semver: | ||
description: 'Which SemVer' | ||
required: true | ||
default: 'patch' | ||
type: choice | ||
options: | ||
- major | ||
- minor | ||
- patch | ||
workflow_call: | ||
inputs: | ||
semver: | ||
description: The image_name to build for. | ||
required: true | ||
type: string | ||
jobs: | ||
bump: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- run: npm version ${{ inputs.semver }} --no-git-tag-version --workspaces --no-workspaces-update | ||
|
||
- name: generate new version and save to env variable | ||
id: get_version | ||
run: | | ||
echo "NEW_VERSION=$(cat < apps/web/package.json | jq -r .version)" >> "$GITHUB_OUTPUT" | ||
- name: Generate release notes | ||
uses: actions/github-script@v7 | ||
id: get_release_note | ||
env: | ||
NEW_VERSION: ${{steps.get_version.outputs.NEW_VERSION}} | ||
with: | ||
result-encoding: string | ||
script: | | ||
const notes = await github.rest.repos.generateReleaseNotes( | ||
{ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
tag_name: process.env.NEW_VERSION, | ||
} | ||
); | ||
return notes.data.body; | ||
- run: | | ||
cat << EOF >> new | ||
## v${{ steps.get_version.outputs.NEW_VERSION }} ($(date '+%Y-%m-%d')) | ||
${{ steps.get_release_note.outputs.result }} | ||
EOF | ||
- run: cat new ./CHANGELOG.md > temp | ||
- run: mv temp ./CHANGELOG.md | ||
- run: rm new | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
base: main | ||
branch: main-${{ steps.get_version.outputs.NEW_VERSION }} | ||
commit-message: 'bump: v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
body: ${{ steps.get_release_note.outputs.result }} | ||
title: 'chore: bump v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
labels: | | ||
documentation | ||
draft: true | ||
milestone: 'v${{ steps.get_version.outputs.NEW_VERSION }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: 'Check spelling' | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
spellcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: streetsidesoftware/cspell-action@v5 | ||
with: | ||
files: "*.{rs,ts,tsx,md}" | ||
incremental_files_only: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Secretlint | ||
on: [push, pull_request] | ||
permissions: | ||
contents: read | ||
jobs: | ||
test: | ||
name: "Secretlint" | ||
runs-on: ubuntu-latest | ||
container: secretlint/secretlint:v8.0.0 | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: Lint with Secretlint | ||
run: secretlint "**/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
repos: | ||
# - repo: https://github.com/streetsidesoftware/cspell-cli | ||
# rev: v8.0.0 | ||
# hooks: | ||
# - id: cspell | ||
|
||
- repo: local | ||
hooks: | ||
- id: secretlint | ||
name: secretlint | ||
language: docker_image | ||
entry: secretlint/secretlint:latest secretlint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,13 @@ This is an example file with default selections. | |
|
||
## Install | ||
|
||
``` | ||
```sh | ||
|
||
``` | ||
|
||
## Usage | ||
|
||
``` | ||
```sh | ||
|
||
``` | ||
|
||
|