Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ci/fix update versionned docs #501

Merged
merged 3 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bump-axoned-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
commit_user_name: ${{ vars.BOT_GIT_COMMITTER_NAME }}
commit_user_email: ${{ vars.BOT_GIT_COMMITTER_EMAIL }}
commit_author: ${{ vars.BOT_GIT_AUTHOR_NAME }} <${{ vars.BOT_GIT_AUTHOR_EMAIL }}>
commit_message: "build: bump zxoned version to ${{ github.event.inputs.axonedVersion }}"
commit_message: "build: bump axoned version to ${{ github.event.inputs.axonedVersion }}"
6 changes: 3 additions & 3 deletions .github/workflows/update-versioned-docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Update versioned docs

concurrency:
group: update-docs-${{ github.ref }}
cancel-in-progress: false
group: update-docs-${{ github.ref }}-${{ github.event.inputs.section }}
cancel-in-progress: ${{ github.event.inputs.draft == 'true' }}

on:
workflow_dispatch:
Expand All @@ -14,7 +14,7 @@ on:
description: "Set the repository that docs has been updated (axone-protocol/contracts | axone-protocol/axoned)"
required: true
section:
description: "Which section will be update (contracts | modules | commands)"
description: "Which section will be update (contracts | modules | commands | predicates)"
required: true
docs_directory:
description: "On which directory documentation is located (docs/* | docs/proto/* | docs/command/*)"
Expand Down
Loading