You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add GitHub workflow template to easily enable the tool in any GitHub repository and update the existing GitLab CI template which is used to easily enable the tool in any GitLab repository to changes its path, Docker image used and variables location.
Copy file name to clipboardexpand all lines: README.md
+46-9
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ A security solution that finds secrets in a git repository using Gitleaks, gener
8
8
9
9
❓ Where I can run this?
10
10
11
-
👉🏻 This solution can be executed on any macOS or Linux system either locally or on a remote server. It can also be executed on a CI/CD pipeline.
11
+
This solution can be executed on any macOS or Linux system either locally or on a remote server. It can also be executed on a CI/CD tool like on GitHub Actions, GitLab CI, etc, in a pipeline.
12
12
13
13
Below you can find an example of the JSON report generated:
14
14
@@ -139,20 +139,51 @@ And then simply run the following 2 commands:
- Note: Details about supported time zones and their constant names can be found here: [pypi.org > project > pytz > Helpers](https://pypi.org/project/pytz/#:~:text=through%20multiple%20timezones.-,Helpers,-There%20are%20two)
141
141
142
-
## Automatically via CI/CD Pipeline
142
+
## Automatically via a CI/CD Pipeline
143
143
144
-
### Setup Instructions
144
+
### GitHub Actions - Setup Instructions
145
145
146
-
In order to run it on any GitLab repository, add the following in the `.gitlab-ci.yml` file that is in the repository:
146
+
In order to run it on any GitHub repository, add the following in the `.github-workflow.yml` file under the `.github/workflows/` directory in the repository:
In the `on` section, you specify events can cause the workflow to run. In the above example, the job is only allowed to execute if something is pushed to the `master` branch.
172
+
173
+
The variables referred using `$` are supposed to be created on the repository under `Repository secrets` and `Repository variables` depending on the type of variable from here: `Settings > Security > Secrets and variables > Actions`.
174
+
175
+
### GitLab CI - Setup Instructions
176
+
177
+
In order to run it on any GitLab repository, add the following in the `.gitlab-ci.yml` file on root level in the repository:
In the `rules` section, you specify rules for execution as `if` conditions. In the above example, the job is only allowed to execute if it is a scheduled job for the `master` branch.
177
208
178
-
The variables referred using `$` are supposed to be created on the repository under `CI/CD Settings` page.
209
+
The variables referred using `$` are supposed to be created on the repository under `CI/CD Variables` from here: `Settings > CI/CD > Variables`.
210
+
211
+
## Docker Image Details
212
+
213
+
The Docker image used is built using the Dockerfile that is present in this repository here: [Dockerfile](https://github.com/abdullahkhawer/find-and-report-secrets-in-code/tree/master/docker)
214
+
215
+
Following build command is used on the root level in the GitHub repository: `docker buildx build --platform linux/amd64 -t "abdullahkhawer/find-and-report-secrets-in-code:latest" --no-cache -f ./docker/Dockerfile .`
179
216
180
-
The image used in this GitLab CI job is built using the Dockerfile that is present in this repository here: https://github.com/abdullahkhawer/find-and-report-secrets-in-code/tree/master/docker
217
+
The image used is publicly available here: [Docker - find-and-report-secrets-in-code](https://hub.docker.com/r/abdullahkhawer/find-and-report-secrets-in-code/)
181
218
182
-
The image used is publicly available here: https://hub.docker.com/r/abdullahkhawer/find-and-report-secrets-in-code/
219
+
For more details, check out its [README](https://github.com/abdullahkhawer/find-and-report-secrets-in-code/blob/master/docker/README.md).
@@ -21,7 +21,7 @@ This repository has a Docker image that finds secrets in a git repository using
21
21
22
22
❓ Where I can run this?
23
23
24
-
👉🏻 This Docker image can be executed on any Windows, macOS or Linux system either locally or on a remote server. It can also be executed on a CI/CD pipeline.
24
+
This solution can be executed on any macOS or Linux system either locally or on a remote server. It can also be executed on a CI/CD tool like on GitHub Actions, GitLab CI, etc, in a pipeline.
25
25
26
26
Below you can find an example of the JSON report generated:
27
27
@@ -118,20 +118,51 @@ And then simply run the following 4 commands:
- Note: Details about supported time zones and their constant names can be found here: [pypi.org > project > pytz > Helpers](https://pypi.org/project/pytz/#:~:text=through%20multiple%20timezones.-,Helpers,-There%20are%20two)
120
120
121
-
## Automatically via CI/CD Pipeline
121
+
## Automatically via a CI/CD Pipeline
122
122
123
-
### Setup Instructions
123
+
### GitHub Actions - Setup Instructions
124
124
125
-
In order to run it on any GitLab repository, add the following in the `.gitlab-ci.yml` file that is in the repository:
125
+
In order to run it on any GitHub repository, add the following in the `.github-workflow.yml` file under the `.github/workflows/` directory in the repository:
In the `on` section, you specify events can cause the workflow to run. In the above example, the job is only allowed to execute if something is pushed to the `master` branch.
151
+
152
+
The variables referred using `$` are supposed to be created on the repository under `Repository secrets` and `Repository variables` depending on the type of variable from here: `Settings > Security > Secrets and variables > Actions`.
153
+
154
+
### GitLab CI - Setup Instructions
155
+
156
+
In order to run it on any GitLab repository, add the following in the `.gitlab-ci.yml` file on root level in the repository:
In the `rules` section, you specify rules for execution as `if` conditions. In the above example, the job is only allowed to execute if it is a scheduled job for the `master` branch.
156
187
157
-
The variables referred using `$` are supposed to be created on the repository under `CI/CD Settings` page.
188
+
The variables referred using `$` are supposed to be created on the repository under `CI/CD Variables` from here: `Settings > CI/CD > Variables`.
189
+
190
+
## Docker Image Details
191
+
192
+
The Docker image used is built using the Dockerfile that is present in this repository here: [Dockerfile](https://github.com/abdullahkhawer/find-and-report-secrets-in-code/tree/master/docker)
Following build command is used on the root level in the GitHub repository: `docker buildx build --platform linux/amd64 -t "abdullahkhawer/find-and-report-secrets-in-code:latest" --no-cache -f ./docker/Dockerfile .`
0 commit comments