-
Notifications
You must be signed in to change notification settings - Fork 45
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 <willdavsmith@gmail.com>
@@ -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 <61033581+Reshrahim@users.noreply.github.com> * Update index.md Signed-off-by: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> --------- Signed-off-by: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> * create CODEOWNERS (#1263) Signed-off-by: Will Tsai <28876888+willtsai@users.noreply.github.com> * 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 <61033581+Reshrahim@users.noreply.github.com> --------- Signed-off-by: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> Co-authored-by: Radius CI Bot <radiuscoreteam@service.microsoft.com> * Remove broken signoff argument (#1269) Signed-off-by: willdavsmith <willdavsmith@gmail.com> * Fix GH PAT scope (#1272) Signed-off-by: willdavsmith <willdavsmith@gmail.com> * adding gh auth login (#1273) Signed-off-by: willdavsmith <willdavsmith@gmail.com> * Fix gh auth login command (#1274) Signed-off-by: willdavsmith <willdavsmith@gmail.com> * Fix GitHub auth login for upmerge workflow (#1278) * Adding GH_TOKEN Signed-off-by: willdavsmith <willdavsmith@gmail.com> * Adding Signoff Signed-off-by: willdavsmith <willdavsmith@gmail.com> * Removing Signoff Signed-off-by: willdavsmith <willdavsmith@gmail.com> --------- Signed-off-by: willdavsmith <willdavsmith@gmail.com> * Removing version info Signed-off-by: willdavsmith <willdavsmith@gmail.com> --------- Signed-off-by: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> Signed-off-by: Will Tsai <28876888+willtsai@users.noreply.github.com> Signed-off-by: willdavsmith <willdavsmith@gmail.com> Co-authored-by: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> Co-authored-by: Will <28876888+willtsai@users.noreply.github.com> Co-authored-by: Will Smith <willdavsmith@gmail.com>
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