forked from dojoengine/dojo
-
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.
- Loading branch information
Showing
98 changed files
with
17,377 additions
and
1,283 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Unused dependencies | ||
name: cargo-udeps | ||
|
||
on: | ||
schedule: | ||
|
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,35 @@ | ||
name: release-dispatch | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: Version to release | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
propose-release: | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/dojoengine/dojo-dev:448ffda | ||
steps: | ||
# Workaround described here: https://github.com/actions/checkout/issues/760 | ||
- uses: actions/checkout@v3 | ||
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
- run: cargo release version ${{ inputs.version }} --execute --no-confirm && cargo release replace --execute --no-confirm | ||
- id: version_info | ||
run: | | ||
cargo install cargo-get | ||
echo "version=$(cargo get workspace.package.version)" >> $GITHUB_OUTPUT | ||
- uses: peter-evans/create-pull-request@v5 | ||
with: | ||
# We have to use a PAT in order to trigger ci | ||
token: ${{ secrets.CREATE_PR_TOKEN }} | ||
title: "Prepare release: v${{ steps.version_info.outputs.version }}" | ||
commit-message: "Prepare release: v${{ steps.version_info.outputs.version }}" | ||
branch: prepare-release | ||
base: main | ||
delete-branch: true |
Oops, something went wrong.