Skip to content

Commit f84fbb1

Browse files
committed
style(context-ledger): standardize quote usage and formatting
• Change single quotes to double quotes in workflow inputs • Remove trailing whitespace in action.yml • Improve code consistency across configuration files
1 parent 5f300bd commit f84fbb1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
uses: lukemun/context-ledger@v1
4646
with:
4747
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
48-
changelog_path: 'CHANGELOG.md'
49-
target_name: 'context-ledger'
48+
changelog_path: "CHANGELOG.md"
49+
target_name: "context-ledger"
5050
version_increment: ${{ inputs.version_increment || 'auto' }}
5151
auto_commit: ${{ github.event_name != 'pull_request' }}
5252
create_pr_suggestions: ${{ github.event_name == 'pull_request' }}

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ runs:
8383
shell: bash
8484
run: |
8585
set +e # Don't exit on error for this section
86-
86+
8787
# Check if the most recent commit is from applying suggestions or only modifies changelog
8888
LATEST_COMMIT_MSG=$(git log -1 --pretty=format:"%s")
8989
echo "Latest commit message: $LATEST_COMMIT_MSG"

0 commit comments

Comments
 (0)