We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fcc9e4 commit dfa5304Copy full SHA for dfa5304
.github/workflows/gh-pages.yml
@@ -52,6 +52,7 @@ jobs:
52
53
- name: Deploy
54
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
55
+ if: github.repository == 'DefectDojo/django-DefectDojo' # Deploy docs only in core repo, not in forks - it would just fail in fork
56
with: # publishes to the `gh-pages` branch by default
57
github_token: ${{ secrets.GITHUB_TOKEN }}
58
publish_dir: ./docs/public
.github/workflows/slack-pr-reminder.yml
@@ -8,6 +8,7 @@ on:
8
jobs:
9
notify-reviewers:
10
runs-on: ubuntu-latest
11
+ if: github.repository == 'DefectDojo/django-DefectDojo' # Notify only in core repo, not in forks - it would just fail in fork
12
13
steps:
14
- name: Checkout repository
0 commit comments