Skip to content

Commit

Permalink
joinmisskey/release-actions -> misskey-dev/release-manager-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaina authored Jan 29, 2024
1 parent 8fce5f9 commit 3c43a7f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/create-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Initialize
uses: joinmisskey/release-actions/.github/actions/checkout-pr
uses: misskey-dev/release-manager-actions/.github/actions/checkout-pr
with:
pr_number: ${{ inputs.pr_number }}
user: ${{ inputs.user }}
id: get_pr
- name: Get target version
uses: joinmisskey/release-actions/.github/actions/get-target-version
uses: misskey-dev/release-manager-actions/.github/actions/get-target-version
id: v
# バージョンをインクリメント
- name: Increment version
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
id: release_version
# バージョンをpackage.jsonに書き込み
- name: Write version
uses: joinmisskey/release-actions/.github/actions/rewrite-package-json
uses: misskey-dev/release-manager-actions/.github/actions/rewrite-package-json
with:
version: ${{ steps.release_version.outputs.result }}
package_jsons: ${{ inputs.package_jsons_to_rewrite }}
Expand All @@ -84,7 +84,7 @@ jobs:
git push origin "${{ steps.release_version.outputs.result }}"
# CHANGELOG.mdの内容を取得
- name: Get changelog
uses: joinmisskey/release-actions/.github/actions/get-changelog
uses: misskey-dev/release-manager-actions/.github/actions/get-changelog
with:
version: ${{ steps.v.outputs.target_version }}
id: changelog
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
id: release_version
# バージョンをpackage.jsonに書き込み
- name: Write version
uses: joinmisskey/release-actions/.github/actions/rewrite-package-json
uses: misskey-dev/release-manager-actions/.github/actions/rewrite-package-json
with:
version: ${{ steps.release_version.outputs.result }}
package_jsons: ${{ inputs.package_jsons_to_rewrite }}
# CHANGELOG.mdのUnreleasedの内容を取得
- name: Get changelog
uses: joinmisskey/release-actions/.github/actions/get-changelog
uses: misskey-dev/release-manager-actions/.github/actions/get-changelog
with:
version: Unreleased
id: changelog
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Initialize
uses: joinmisskey/release-actions/.github/actions/checkout-pr
uses: misskey-dev/release-manager-actions/.github/actions/checkout-pr
with:
pr_number: ${{ inputs.pr_number }}
user: ${{ inputs.user }}
- name: Get target version
uses: joinmisskey/release-actions/.github/actions/get-target-version
uses: misskey-dev/release-manager-actions/.github/actions/get-target-version
id: v

# rulesetを切り替え
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

# バージョンをpackage.jsonに書き込み
- name: Write version
uses: joinmisskey/release-actions/.github/actions/rewrite-package-json
uses: misskey-dev/release-manager-actions/.github/actions/rewrite-package-json
with:
version: ${{ steps.v.outputs.target_version }}
package_jsons: ${{ inputs.package_jsons_to_rewrite }}
Expand All @@ -158,7 +158,7 @@ jobs:
# CHANGELOG.mdの内容を取得
- name: Get changelog
uses: joinmisskey/release-actions/.github/actions/get-changelog
uses: misskey-dev/release-manager-actions/.github/actions/get-changelog
with:
version: ${{ steps.v.outputs.target_version }}
id: changelog
Expand Down

0 comments on commit 3c43a7f

Please sign in to comment.