Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

How This article explains how to create a confluence Confluence page and add a Jira version simultaneously when both the apps are available on the cloudCloud.

Instructions

  1. With ACL ACLI version 9.0 versionYou you can add the version to a Jira project and create a page in Confluence simultaneously using CLI.
  2. In the acli.properties mention file put the URLs of both the applications URL and comment on the Default.
  3. Create a text file(cmd1.txt) and add the below actions in your file.

  4. Code Block
    themeDJango
     --action addVersion  --project "CREAT"  --name "V2"
     --action addPage --space "tabletest"  --title "This is title 0"  --content "This is a test page” --parent "Home"


  5. To execute the file, from the terminal run the below-given action

    Code Block
    themeDJango
    ./acli.sh myjira myconfluence --action run --file "/Users/Reshma/Documents/cmd1.txt"


...