Open LangLangBart opened 1 year ago
git_log_format_args
with --pretty=format:"" --patch --name-only
shows me the files of interest in the logs, is there any way to access them in later steps so I can read out the information I want? steps:
- uses: actions/checkout@v3
- uses: aormsby/Fork-Sync-With-Upstream-action@main
id: sync
with:
# rebase the local branch on top of the remote changes
git_config_pull_rebase: true
target_sync_branch: testing
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
# list
git_log_format_args: --pretty=format:"" --patch --name-only
# force push, because of the rebase
target_branch_push_args: --force
upstream_sync_branch: master
upstream_sync_repo: 0ad/0ad
upstream_pull_args: --ff --no-edit
test_mode: false
description
Output Variables
use case
PS: The
action
works very well, a good job of you to make it available to the public.