Skip to content

Commit

Permalink
workflows: fix the pre-release docs workflow
Browse files Browse the repository at this point in the history
It contained a check for `repo_owner == 'martinvonz'` which meant that it hasn't run in 4 weeks.
This is another great example showing why current CI systems suck, as it always was "successful" in
doing nothing with no warning whatsoever.

I also only noticed it because I wanted to check my latest doc change on the prerelease site.
  • Loading branch information
PhilipMetzger committed Jan 10, 2025
1 parent 1f24d57 commit f9dad76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
prerelease-docs-build-deploy:
if: github.repository_owner == 'martinvonz' # Stops this job from running on forks
if: github.repository_owner == 'jj-vcs' # Stops this job from running on forks
strategy:
matrix:
os: [ubuntu-24.04]
Expand Down

0 comments on commit f9dad76

Please sign in to comment.