Skip to content

Commit

Permalink
Merge pull request #97 from NASA-PDS/missing-backslash
Browse files Browse the repository at this point in the history
Add missing backslash to secrets detection GitHub Actions workflow file
  • Loading branch information
jordanpadams authored Oct 24, 2024
2 parents 303c977 + d404fc5 commit e56675c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/secrets-detection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
--exclude-files 'venv' \
--exclude-files 'dist' \
--exclude-files 'build' \
--exclude-files '.*\.egg-info'
--exclude-files '.*\.egg-info' \
--exclude-files '\.pre-commit-config.yaml'
# if there is any difference between the known and newly detected secrets, break the build
Expand Down
13 changes: 2 additions & 11 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
"pattern": [
"\\.secrets..*",
"\\.git.*",
"\\.pre-commit-config\\.yaml",
"\\.mypy_cache",
"\\.pytest_cache",
"\\.tox",
Expand All @@ -139,16 +140,6 @@
}
],
"results": {
".pre-commit-config.yaml": [
{
"type": "Hex High Entropy String",
"filename": ".pre-commit-config.yaml",
"hashed_secret": "63076edad0be7557f5fbd9b60bc1ffa664fce207",
"is_verified": false,
"line_number": 57,
"is_secret": false
}
],
"setup.cfg": [
{
"type": "Email Address",
Expand All @@ -160,5 +151,5 @@
}
]
},
"generated_at": "2023-11-09T15:22:01Z"
"generated_at": "2024-10-02T16:13:34Z"
}
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ commands = pytest
[testenv:docs]
deps = .[dev]
whitelist_externals = python
commands = python setup.py build_sphinx
commands = sphinx-build -a -b html docs/source docs/build

[testenv:lint]
deps = pre-commit
Expand Down

0 comments on commit e56675c

Please sign in to comment.