-
It would be great if there were an input to the action that would add the "Signed-off by" line (--signoff) when making commits. |
Beta Was this translation helpful? Give feedback.
Answered by
BetaHuhn
Oct 16, 2021
Replies: 1 comment
-
This should already be possible with the In your case it would be: - name: Run GitHub File Sync
uses: BetaHuhn/repo-file-sync-action@v1
with:
GH_PAT: ${{ secrets.GH_PAT }}
COMMIT_BODY: "Signed-off-by: Username" The commit message will look like:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
BetaHuhn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should already be possible with the
COMMIT_BODY
input. It gets appended to each commit message (separated by two line returns).In your case it would be:
The commit message will look like: