-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): Release version 0.8.2
- Loading branch information
Showing
20 changed files
with
687 additions
and
120 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ updates: | |
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 |
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,22 @@ | ||
# SPDX-FileCopyrightText: 2022 Shun Sakai | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
name: Check Semantic Versioning | ||
|
||
on: | ||
push: | ||
branches: | ||
- "release/*" | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
|
||
jobs: | ||
semver: | ||
name: Check Semantic Versioning | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Check Semantic Versioning | ||
uses: obi1kenobi/cargo-semver-checks-action@v2.6 |
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,47 @@ | ||
# SPDX-FileCopyrightText: 2024 Shun Sakai | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
name: Mirror to mirror repositories | ||
|
||
on: | ||
push: | ||
branches: | ||
- "develop" | ||
- "master" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
gitlab: | ||
name: Mirror to GitLab | ||
if: github.actor == 'sorairolake' && github.repository_owner == 'sorairolake' | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Mirror to GitLab | ||
uses: yesolutions/mirror-action@v0.7.0 | ||
with: | ||
REMOTE: "https://gitlab.com/sorairolake/sysexits-rs.git" | ||
GIT_USERNAME: ${{ github.actor }} | ||
GIT_PASSWORD: ${{ secrets.GITLAB_TOKEN }} | ||
PUSH_ALL_REFS: "false" | ||
|
||
codeberg: | ||
name: Mirror to Codeberg | ||
if: github.actor == 'sorairolake' && github.repository_owner == 'sorairolake' | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Mirror to Codeberg | ||
uses: yesolutions/mirror-action@v0.7.0 | ||
with: | ||
REMOTE: "https://codeberg.org/sorairolake/sysexits-rs.git" | ||
GIT_USERNAME: ${{ github.actor }} | ||
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }} | ||
PUSH_ALL_REFS: "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
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
Oops, something went wrong.