@@ -13,7 +13,8 @@ GPG key.
1313### git-sign
1414
1515Use this action to create signed git artifacts:
16- ``` markdown
16+
17+ ``` yaml
1718- name : " Create signed commit"
1819 uses : mongodb/drivers-github-tools/garasign/git-sign@main
1920 with :
@@ -41,7 +42,7 @@ option can be set to a truthy value to avoid unnecessary logins to artifactory.
4142
4243This action is used to create detached signatures for files :
4344
44- ``` markdown
45+ ` ` ` yaml
4546- name: "Create detached signature"
4647 uses: mongodb/drivers-github-tools/garasign/gpg-sign@main
4748 with:
@@ -59,7 +60,7 @@ option can be set to a truthy value to avoid unnecessary logins to artifactory.
5960
6061You can also supply multiple space-separated filenames to sign a list of files :
6162
62- ``` markdown
63+ ` ` ` yaml
6364- name: "Create detached signature"
6465 uses: mongodb/drivers-github-tools/garasign/gpg-sign@main
6566 with:
@@ -69,3 +70,23 @@ You can also supply multiple space-separated filenames to sign a list of files:
6970 artifactory_username: ${{ secrets.ARTIFACTORY_USER }}
7071 artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }}
7172` ` `
73+
74+ # # Reporting tools
75+
76+ The following tools are meant to aid in generating Software Security Development Lifecycle
77+ reports associated with a product release.
78+
79+ # ## Papertrail
80+
81+ This action will create a record of authorized publication on distribution channels.
82+ By default it will create a "papertrail.txt" file in the current directory.
83+
84+ ` ` ` yaml
85+ - name: "Create papertrail report"
86+ uses: mongodb/drivers-github-tools/papertrail@main
87+ with:
88+ product_name: Mongo Python Driver
89+ release_version: ${{ github.ref_name }}
90+ filenames: $DIST_FILES
91+ token: ${{ github.token }}
92+ ` ` `
0 commit comments