-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from thornbill/workflow-variable
Fix workflow variable usage?
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,12 +31,12 @@ jobs: | |
STABLE_API_VERSION=$(jq -r .info.version openapi.json) | ||
npm run fix-schema | ||
npm run build:generated-client | ||
COMMIT_MESSAGE: 'Update generated sources to ${{ STABLE_API_VERSION }}' | ||
COMMIT_MESSAGE: 'Update generated sources to ${STABLE_API_VERSION}' | ||
COMMIT_NAME: 'jellyfin-bot' | ||
COMMIT_EMAIL: '[email protected]' | ||
PR_BRANCH_PREFIX: 'openapi-update-' | ||
PR_BRANCH_NAME: '${PR_ID}' | ||
PR_TITLE: 'Update OpenAPI to ${{ STABLE_API_VERSION }}' | ||
PR_TITLE: 'Update OpenAPI to ${STABLE_API_VERSION}' | ||
PR_BODY: | | ||
## Changed files | ||
|