-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove broken signoff argument #1269
Conversation
Signed-off-by: willdavsmith <[email protected]>
@@ -79,4 +79,4 @@ jobs: | |||
if: env.NO_CHANGES != 'true' | |||
env: | |||
GITHUB_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT}} | |||
run: gh pr create --title "Upmerge to edge" --body "Upmerge to edge (kicked off by @${{ github.triggering_actor }})" --base edge --head $BRANCH_NAME --signoff | |||
run: gh pr create --title "Upmerge to edge" --body "Upmerge to edge (kicked off by @${{ github.triggering_actor }})" --base edge --head $BRANCH_NAME |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We require commits to be signed off for PRs so wondering if this will remove the auto-signoff. It looks like the flag is meant to be used with git commit
so we should update the workflow in edge to include that here:
docs/.github/workflows/upmerge.yaml
Line 67 in d425e1d
git commit -m "Upmerge to edge" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this needs to block the release but we should make sure to update the workflow after or open an issue to track it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agreed. BTW for reference the samples repo does not sign off commits today when we upmerge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh interesting. if it doesn't mess with the PR checks, then there's no issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
opened issues:
* Update docs for v0.39.0 * Add IRSA to the cloud provider table (#1262) * Update index.md Signed-off-by: Reshma Abdul Rahim <[email protected]> * Update index.md Signed-off-by: Reshma Abdul Rahim <[email protected]> --------- Signed-off-by: Reshma Abdul Rahim <[email protected]> * create CODEOWNERS (#1263) Signed-off-by: Will Tsai <[email protected]> * Update the supported clusters link in getting started guide (#1238) * Update docs for v0.38.0 * Update index.md Signed-off-by: Reshma Abdul Rahim <[email protected]> --------- Signed-off-by: Reshma Abdul Rahim <[email protected]> Co-authored-by: Radius CI Bot <[email protected]> * Remove broken signoff argument (#1269) Signed-off-by: willdavsmith <[email protected]> * Fix GH PAT scope (#1272) Signed-off-by: willdavsmith <[email protected]> * adding gh auth login (#1273) Signed-off-by: willdavsmith <[email protected]> * Fix gh auth login command (#1274) Signed-off-by: willdavsmith <[email protected]> * Fix GitHub auth login for upmerge workflow (#1278) * Adding GH_TOKEN Signed-off-by: willdavsmith <[email protected]> * Adding Signoff Signed-off-by: willdavsmith <[email protected]> * Removing Signoff Signed-off-by: willdavsmith <[email protected]> --------- Signed-off-by: willdavsmith <[email protected]> * Removing version info Signed-off-by: willdavsmith <[email protected]> --------- Signed-off-by: Reshma Abdul Rahim <[email protected]> Signed-off-by: Will Tsai <[email protected]> Signed-off-by: willdavsmith <[email protected]> Co-authored-by: Reshma Abdul Rahim <[email protected]> Co-authored-by: Will <[email protected]> Co-authored-by: Will Smith <[email protected]>
Fixes: #1268
Thank you for helping make the Radius documentation better!
Please follow this checklist before submitting:
In addition, please fill out the following to help reviewers understand this pull request:
Description
Issue reference