Skip to content

Commit 58c5687

Browse files
authored
Merge branch 'DefectDojo:master' into wizcli-improvements
2 parents 2673b5a + 6b30c45 commit 58c5687

File tree

61 files changed

+1245
-1633
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1245
-1633
lines changed

.github/pr-reminder.py

Lines changed: 0 additions & 220 deletions
This file was deleted.
Lines changed: 9 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,19 @@
1-
name: Notify Pending PR Reviewers
1+
name: Daily PR Review Reminder
22

33
on:
4-
workflow_dispatch:
54
schedule:
6-
- cron: '0 16 * * 1-5' # 11:00 AM CT M-F
5+
- cron: "0 16 * * 1-5" # 11:00 AM CT M-F
6+
workflow_dispatch:
77

88
jobs:
99
notify-reviewers:
1010
runs-on: ubuntu-latest
1111
if: github.repository == 'DefectDojo/django-DefectDojo' # Notify only in core repo, not in forks - it would just fail in fork
12-
1312
steps:
14-
- name: Checkout repository
15-
uses: actions/checkout@v4
13+
- name: Notify reviewers in Slack
14+
uses: DefectDojo-Inc/notify-pr-reviewers-action@master
1615
with:
17-
# Only checkout the master branch to avoid changes to this script
18-
# This is to reduce the possibilities of a secret leak from modifying
19-
# this action, or the python script that is called down below
20-
ref: master
21-
22-
- name: Set up Python
23-
uses: actions/setup-python@v5
24-
with:
25-
python-version: "3.13"
26-
27-
- name: Install dependencies
28-
run: |
29-
python -m pip install --upgrade pip
30-
pip install requests
31-
32-
- name: Run PR reminder script
33-
env:
34-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
35-
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
36-
run: |
37-
python3 .github/pr-reminder.py
16+
owner: "DefectDojo"
17+
repository: "django-DefectDojo"
18+
gh_token: ${{ secrets.GH_TOKEN }}
19+
slack_token: ${{ secrets.SLACK_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ pip-delete-this-directory.txt
4141
.ruff_cache
4242
nosetests.xml
4343
coverage.xml
44+
selenium_page_source.html
4445

4546
# Translations
4647
*.mo

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ Core Moderators can help you with pull requests or feedback on dev ideas:
129129

130130
Moderators can help you with pull requests or feedback on dev ideas:
131131
* Charles Neill ([@cneill](https://github.com/cneill) | [@ccneill](https://twitter.com/ccneill))
132-
* Jay Paz ([@jjpaz](https://twitter.com/jjpaz))
133132
* Blake Owens ([@blakeaowens](https://github.com/blakeaowens))
134133

135134
## Hall of Fame

components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "defectdojo",
3-
"version": "2.47.0-dev",
3+
"version": "2.46.4",
44
"license" : "BSD-3-Clause",
55
"private": true,
66
"dependencies": {

docker/entrypoint-initializer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ echo "Creating Announcement Banner"
2626
cat <<EOD | python3 manage.py shell
2727
from dojo.models import Announcement, UserAnnouncement, Dojo_User
2828
announcement, created = Announcement.objects.get_or_create(id=1)
29-
announcement.message = '<a href="https://defectdojo.com/contact" target="_blank">Cloud and On-Premise Subscriptions Now Available! Click here for more details</a>'
29+
announcement.message = '<a href="https://cloud.defectdojo.com/accounts/onboarding/plg_step_1" target="_blank">DefectDojo Pro Cloud and On-Premise Subscriptions Now Available! Create an account to try Pro for free!</a>'
3030
announcement.dismissable = True
3131
announcement.save()
3232
for dojo_user in Dojo_User.objects.all():

docs/assets/images/oidc_pro.png

46.7 KB
Loading
174 KB
Loading

0 commit comments

Comments
 (0)