Refactor code structure for improved readability and maintainability (#73)

The GitHub Actions workflow configuration for `sync-subtrees-action` was cleaned up by modifying parameter names and updating the SSH private key secret.
This commit is contained in:
Charlton, Scott R. 2025-06-27 20:42:18 -06:00 committed by GitHub
parent d03bb744e7
commit 990fca2df9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,8 +23,8 @@ jobs:
with:
dryRun: ${{ inputs.dryRun }}
testMerge: ${{ inputs.testMerge }}
repoName: ${{ github.event.repository.name }}
defaultRef: ${{ github.event.repository.default_branch }}
runNumber: ${{ github.run_number }}
sshKey: ${{ secrets.SSH_PRIVATE_KEY }}
repoOwner: ${{ github.repository_owner }}
github_token: ${{ secrets.GITHUB_TOKEN }}
repository_name: ${{ github.event.repository.name }}
default_branch: ${{ github.event.repository.default_branch }}
run_number: ${{ github.run_number }}
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}