The workflow job release-security-shepherd should not run on forks, thus .github/workflows/release.yml should be modified.
Probably an additional if condition has to be added by changing line 76 in release.yml
from
if: github.event_name != 'pull_request'
to
if: github.event_name != 'pull_request' && github.repository == 'OWASP/SecurityShepherd'
The workflow job
release-security-shepherd
should not run on forks, thus.github/workflows/release.yml
should be modified.Probably an additional if condition has to be added by changing line 76 in
release.yml
fromif: github.event_name != 'pull_request'
toif: github.event_name != 'pull_request' && github.repository == 'OWASP/SecurityShepherd'