Skip to content
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

AAP-16652: Lightspeed: support multi-line prompt for multitasks suggestions #1686

Merged
merged 1 commit into from
Nov 28, 2024

Conversation

ldjebran
Copy link
Contributor

Restored from PR #1677

add a feature to allow multi line prompt for multitasks suggestion.

REF: AAP-16652

prompt may be like:

---
# Install postgresql-server &
# Do the initial postgresql-server config &
# Start the postgresql service &
# Allow the firewall traffic

...

suggestion resolution will be like:

---
# Install postgresql-server &
# Do the initial postgresql-server config &
# Start the postgresql service &
# Allow the firewall traffic
- name: Install postgresql-server
  become: true
  ansible.builtin.package:
    name: postgresql-server
    state: present

- name: Do the initial postgresql-server config
  ansible.builtin.command: /usr/pgsql-12/bin/postgresql-setup initdb
  become: true
  become_user: postgres

- name: Start the postgresql service
  ansible.builtin.service:
    name: postgresql
    state: started
    enabled: true

- name: Allow the firewall traffic
  ansible.posix.firewalld:
    port: 5432/tcp
    permanent: true
    state: enabled
    immediate: true
    
...
Testing.Lightspeed.multi-line.prompts.for.multi-task.suggestions-2.mp4

add a feature to allow multi line prompt for multitasks suggestion.
REF: AAP-16652
Copy link
Contributor

Label error. Requires exactly 1 of: bug, enhancement, major, minor, patch, skip-changelog. Found:

@goneri
Copy link
Contributor

goneri commented Nov 28, 2024

Thank you @ldjebran, this is really cool.

@goneri goneri merged commit c5b208d into main Nov 28, 2024
22 of 25 checks passed
@goneri goneri deleted the implement-MultiLinePromptForMultiTasksSuggestions branch November 28, 2024 13:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

2 participants