lookitn.blogg.se

Github cli
Github cli









  1. #GITHUB CLI ARCHIVE#
  2. #GITHUB CLI CODE#

There is an action on the marketplace that triggers on PR comment here as an example of what I'm trying to do, but I want to be able to click the merge button. Just trying to brainstorm my options, if any. Is something possible to solve this problem, and is there any way to implemented the proposed solution? I've considered triggering an action on pull_request.closed status but I believe that would trigger after the commit, requiring some rewriting shenanigans if I went that route and was correct about the order of operations. If I can get an action to trigger when I click "Rebase and Merge", maybe I can change the commit to be fast-forwarded instead. Idea: Change the behavior of the "Rebase and Merge" merge option with an action. Not letting devs press the merge button for PRs sucks, and having to do it via CLI also sucks. Knowing this, I'd like to make a GitHub Action that can make doing this more convenient. So, this is possible but must be done with git CLI. The PR option "Rebase and Merge" rewrites the commit time and author for the rebased commits.įrom the GitHub Documentation, it says "A workaround for this is to rebase and merge locally, and then push the changes to the pull request's base branch." here. Thread overview: 5+ messages / expand mbox.Problem: it's not possible to do a fast-forward rebase merge using the GitHub UI.

github cli

_prom_init_toc_start _prom_init_toc_end btext_setup_display TOC." Reloc_got2 kernstart_addr memstart_addr linux_banner _stext Strcmp strcpy strlcpy strlen strncmp strstr kstrtobool logo_linux_clut224 +_secondary_hold_acknowledge _secondary_hold_spinloop _start strlcat _secondary_hold_acknowledge _secondary_hold_spinloop _start _end enter_prom memcpy memset reloc_offset _secondary_hold a/arch/powerpc/kernel/prom_init_check.sh Prom_printf("command line: %s\n", prom_cmd_line) ĭiff -git a/arch/powerpc/kernel/prom_init_check.sh b/arch/powerpc/kernel/prom_init_check.sh + cmdline_add_builtin_section(prom_cmd_line, NULL, sizeof(prom_cmd_line), _prombss) CONFIG_CMDLINE, sizeof(prom_cmd_line)) L = prom_getprop(prom.chosen, "bootargs", p, COMMAND_LINE_SIZE-1) #include -637,11 +638,10 static void _init early_cmdline_parse(void) Of_scan_flat_dt(early_init_dt_scan_memory_ppc, NULL) ĭiff -git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c Of_scan_flat_dt(early_init_dt_scan_root, NULL) * Scan memory nodes and rebuild MEMBLOCKs */ + cmdline_add_builtin(boot_command_line, NULL, COMMAND_LINE_SIZE) + /* append and prepend any arguments built into the kernel. Of_scan_flat_dt(early_init_dt_scan_chosen_ppc, boot_command_line) #include -716,6 +717,9 void _init early_init_devtree(void *params) command-line options your boot loader passes to the kernel.ĭiff -git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c This is useful if you cannot or don't want to change the

github cli

loader passes other arguments to the kernel. Always use the default kernel command string, even if the boot bool "Always use the default kernel command string" most cases you will need to specify the root device here. some command-line options at build time by entering them here. On some platforms, there is currently no way for the boot loader to default "console=ttyS0,9600 console=tty0 root=/dev/sda2" bool "Default bootloader kernel arguments" Select -777,28 +778,6 config PPC_DENORMALISATIONĪdd support for handling denormalisation of single precision

#GITHUB CLI CODE#

This updates the powerpc code to use the add strlcat to prom_init_check.shĪrch/powerpc/Kconfig | 23 +-Īrch/powerpc/kernel/prom_init.c | 8 ++++-Īrch/powerpc/kernel/prom_init_check.sh | 2 +-Ĥ files changed, 10 insertions(+), 27 deletions(-)ĭiff -git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig

#GITHUB CLI ARCHIVE#

Powerpc: convert to generic builtin command line - Daniel Walker archive mirror help / color / mirror / Atom feed From: Daniel Walker Īndrew Morton powerpc: convert to generic builtin command lineĭate: Fri, 19:44:30 +0000











Github cli