-
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.
BREAKING CHANGE: change library name (#4)
- Loading branch information
Showing
10 changed files
with
741 additions
and
422 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# https://docs.github.com/ja/repositories/releasing-projects-on-github/automatically-generated-release-notes | ||
changelog: | ||
categories: | ||
- title: "💥 BREAKING CHANGES" | ||
labels: | ||
- BREAKING CHANGE | ||
- title: "⬆️ Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)" | ||
labels: | ||
- build | ||
- dependencies | ||
- title: "👷 Changes to our CI configuration files and scripts (examples: CircleCi, SauceLabs)" | ||
labels: | ||
- ci | ||
- title: "📝 Documentation only changes" | ||
labels: | ||
- docs | ||
- title: "✨ A new feature" | ||
labels: | ||
- feat | ||
- title: "🐛 A bug fix" | ||
labels: | ||
- fix | ||
- title: "⚡️ A code change that improves performance" | ||
labels: | ||
- perf | ||
- title: "♻️ A code change that neither fixes a bug nor adds a feature" | ||
labels: | ||
- refactor | ||
- title: "✅ Adding missing tests or correcting existing tests" | ||
labels: | ||
- test | ||
- title: "🚨 Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)" | ||
labels: | ||
- style | ||
- title: "🧑💻 Changes to the build process or auxiliary tools and libraries such as documentation generation" | ||
labels: | ||
- chore | ||
- "*" |
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,61 @@ | ||
name: sh-test | ||
# ~~~~~~~ | ||
# https://github.com/kunitsucom/log.sh/workflows/sh-test/badge.svg | ||
# ~~~~~~~ | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- '.github/dependabot.yml' | ||
- '.github/pull_request_template.md' | ||
- '.github/release.yml' | ||
- 'README.md' | ||
pull_request: | ||
paths-ignore: | ||
- '.github/dependabot.yml' | ||
- '.github/pull_request_template.md' | ||
- '.github/release.yml' | ||
- 'README.md' | ||
workflow_dispatch: | ||
inputs: {} | ||
|
||
# NOTE: 連続で commit & push した時に最新の commit 以外のワークフローをキャンセルする | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.base_ref }}-${{ github.head_ref }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
env: | ||
WORKDIR: . | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
sh-test: # NOTE: for Branch protection rule `Status checks that are required.` | ||
runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: DEBUG | ||
run: | | ||
cat <<'DEBUG_DOC' | ||
== DEBUG ======================================================= | ||
github.ref: ${{ github.ref }} | ||
github.event_name: ${{ github.event_name }} | ||
-- toJSON(github.event.inputs) --------------------------------- | ||
${{ toJSON(github.event.inputs) }} | ||
-- toJSON(github) ---------------------------------------------- | ||
${{ toJSON(github) }} | ||
================================================================ | ||
DEBUG_DOC | ||
shell: bash | ||
- name: Run test.sh | ||
working-directory: ${{ env.WORKDIR }} | ||
run: | | ||
${{ env.WORKDIR }}/test.sh |
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
Oops, something went wrong.