Revert "FEA-2609: Implemented Github Actions"#13
Conversation
Public API ChangesIssue: No Semver Audit Report Found for Base CommitBase commit: This means we couldn't find semver audit data for the commit against which to compare the changes in this PR. Fixing this is a two step process. First, we'll need to generate the semver audit data for the base commit. Then we will have to generate the semver audit data for the head commit on this branch. This can be done by rerunning CI and/or manually running the semver audit tool. Note: It may be sufficient to simply merge master into your branch. Step 1: Generate Semver Audit Data for the Base Commit:You can do this either by rerunning CI on the base commit or by manually running the semver audit tool locally on the base commit. Option 1: Rerunning CILocate the build associated with the base commit (c75a447) in Workiva Build and rerun it. Option 2: Run the Semver Audit Tool Manually# Navigate to the root of the repo and check out the base commit:
$ git checkout c75a44730f3a7fc1cdd7208d5c45a24a72cdbfd0
# If this is a Dart project, run:
$ pub global run semver_audit report --repo Workiva/contextual_message --head-commit c75a44730f3a7fc1cdd7208d5c45a24a72cdbfd0
# If this is a Go project, run:
$ semver_audit_go report --repo Workiva/contextual_message --head-commit c75a44730f3a7fc1cdd7208d5c45a24a72cdbfd0Notes:
$ pub global activate --hosted-url https://pub.workiva.org semver_audit ^2.0.0Step 2: Generate Semver Audit Data for this Branch's Head Commit:You can do this either by rerunning CI on this PR or by manually running the semver audit tool locally against the head commit on this branch. Option 1: Rerunning CIThis is often the easiest solution. Find the Workiva Build check on this Pull Request and simply rerun it. Option 2: Run the Semver Audit Tool Manually# Navigate to the root of the repo and check out the head commit on this branch:
$ git checkout 89718f9ccbe849acf31b216765acd47266e7c8d6
# If this is a Dart project, run:
$ pub global run semver_audit report --repo Workiva/contextual_message --base-commit c75a44730f3a7fc1cdd7208d5c45a24a72cdbfd0 --head-commit 89718f9ccbe849acf31b216765acd47266e7c8d6 --pull 13
# If this is a Go project, run:
$ semver_audit_go report --repo Workiva/contextual_message --base-commit c75a44730f3a7fc1cdd7208d5c45a24a72cdbfd0 --head-commit 89718f9ccbe849acf31b216765acd47266e7c8d6 --pull 13Still Need Help?If you are unable to resolve the issue on your own, either tag Showing results for 89718f9
|
Security InsightsNo security relevant content was detected by automated scans. Action Items
Questions or Comments? Reach out on Slack: #support-infosec. |
|
QA +1 🚀 @Workiva/release-management-p 🚢 |
Reverts #11