@fromeroc9/testform 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -22,8 +22,17 @@ We have completely overhauled our documentation to be as intuitive and comprehen
22
22
 
23
23
  ## Prerequisites
24
24
 
25
- To use Testform, it is a requirement to have an existing GitHub Project. You can create one yourself, or you can clone the following example project:
26
- - [Testform Template Project](https://github.com/users/fromeroc9/projects/4)
25
+ To use Testform, it is a requirement to have an existing GitHub Project properly configured with the necessary labels and status fields.
26
+
27
+ We highly recommend using our automated **[Install Testform Labels and Project](.github/workflows/install.yml)** workflow to set everything up for you. This workflow will automatically:
28
+ - Create the required repository labels (`bug`, `testcase`, `testplan`, `testreport`, `testrun`).
29
+ - Clone the [Testform Template Project](https://github.com/users/fromeroc9/projects/4) into your organization or user account and link it to your target repository.
30
+ - Configure the "Status" field with the correct options and colors (`Todo`, `Done`, `passed`, `failed`, `blocked`, `skipped`, `unexecuted`).
31
+ - Install the `close-issue.yml` workflow into your target repository to automate issue state transitions.
32
+
33
+ > **💡 Authentication Recommendation:** If you plan to use Testform within GitHub Actions, or authenticate via `terratest login` (or equivalent CLI login), we strongly advise configuring a **Personal Access Token (PAT)** (with `repo` and `project` permissions) or creating a **GitHub App token**.
34
+ >
35
+ > *Why?* The default `GITHUB_TOKEN` provided by Actions often lacks the necessary scopes to manipulate organization-level GitHub Projects (V2) or perform cross-repository operations. Using a dedicated PAT or a GitHub App token ensures that your automated pipelines have the robust, fine-grained access required to smoothly transition issues, manage test cases, and keep your project boards flawlessly in sync.
27
36
 
28
37
  ## Installation
29
38