Eduardo Valdes

Results 107 comments of Eduardo Valdes

**14.** Modify if need/required the .github/actions/checksum-validate/action.yaml file and review its changes: ``` console $ git log ./github/actions//action.yml ; commit fba4665dd899767e4ea4da2c6cc5418bef835037 Author: Eduardo Valdes Date: Thu Dec 5 15:06:13 2024 -0700...

**15.** Adding and listing all performed changes: ``` console $ git add . ; $ git status ; On branch devsecops// Your branch is up to date with 'origin/devsecops//'. Changes...

**16.** Provide a meaningful comment: ``` console $ git commit -m "Integrating the GitHub Action into project" ; [devsecops// fba4665dd] Integrating the GitHub Action into project 3 files changed, 210...

**17.** Listing current local repository status: ``` console $ git status ; On branch devsecops// Your branch is ahead of 'origin/devsecops//' by 1 commit. (use "git push" to publish your...

**18.** Push upstream the performed changes: ``` console $ git push ; Enumerating objects: 12, done. Counting objects: 100% (12/12), done. Delta compression using up to 12 threads Compressing objects:...

**19.** Search for all references to this package across the GitHub Workflows and Actions: ``` console $ find . -type f | xargs -I {} egrep -Hni "/" {} ;...

**20.** Make sure these external references in the documentation point to the local repository: **Note**: Since we are currently using the strategy to target hash-commits, we need to make sure...

**21.** Update these references with calls to the local repositoy (e.g.: .github/actions/): ``` $ git status ; On branch devsecops// Your branch is up to date with 'origin/devsecops//'. Changes not...

**22.** Push these latest changes to the upstream repository (project): ``` console $ git add . && git commit -m "Correcting external references to the GitHub Action" ; [devsecops// 58cdc60ac]...

The following Pull Request will merge into the **MAIN** branch after completing all unit-testings and a complete peer review. https://github.com/CDCgov/prime-reportstream/pull/16728