We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c45acb2 commit ba5d149Copy full SHA for ba5d149
.github/workflows/checks.yml
@@ -7,6 +7,8 @@ on:
7
pull_request:
8
branches:
9
- "0.8"
10
+ release:
11
+ types: [published]
12
merge_group:
13
workflow_dispatch:
14
inputs:
@@ -237,4 +239,4 @@ jobs:
237
239
if: startsWith(github.ref, 'refs/tags/')
238
240
env:
241
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- run: cargo publish -p ${{ inputs.crate }}
242
+ run: cargo publish -p ${{ inputs.crate || 'neo4rs' }}
.github/workflows/create-release-pr.yml
@@ -73,6 +73,6 @@ jobs:
73
with:
74
github-token: ${{ secrets.GITHUB_TOKEN }}
75
version: ${{ inputs.version }}
76
- crate-name: ${{ inputs.crate }}
+ crate-name: ${{ inputs.crate || 'neo4rs' }}
77
check-semver: true
78
base-branch: '0.8'
0 commit comments