Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ concurrency:

jobs:
deploy-github-pages:
# Only run this job on the original repository! To run this on your fork,
# update or remove the line below.
if: github.repository == 'code-chronicles-code/leetcode-curriculum'

environment:
name: deploy-github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/post-leetcode-potd-to-discord.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ concurrency:

jobs:
post-leetcode-potd-to-discord:
# Only run this job on the original repository! To run this on your fork,
# update or remove the line below.
if: github.repository == 'code-chronicles-code/leetcode-curriculum'

environment:
name: post-leetcode-potd-to-discord

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update-leetcode-problem-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ permissions:

jobs:
update-problem-data:
# Only run this job on the original repository! To run this on your fork,
# update or remove the line below.
if: github.repository == 'code-chronicles-code/leetcode-curriculum'

runs-on: ubuntu-latest

steps:
Expand Down
Loading