Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6794d72
Player progression dashboard (#2822)
ColdHeat Aug 27, 2025
6fd0d55
Mirror core theme (#2830)
ColdHeat Aug 28, 2025
67b735a
Properly default to the core theme during setup (#2833)
ColdHeat Sep 3, 2025
3ef1b2d
Fix issue where ratings would show incorrect loading message (#2831)
ColdHeat Sep 3, 2025
c1a252e
Rewrite challenge ratings into an upvote/downvote system (#2834)
ColdHeat Sep 3, 2025
a118116
Add id and class to email nudge (#2835)
ColdHeat Sep 3, 2025
6579ac9
Update mirror-core-theme.yml (#2836)
ColdHeat Sep 3, 2025
7650447
Try using subtree split to mirror core theme (#2837)
ColdHeat Sep 3, 2025
5d017f7
Mark 3.8.0 (#2832)
ColdHeat Sep 4, 2025
fac7912
Update changelog slightly (#2838)
ColdHeat Sep 5, 2025
ea3084d
feat: Allow deployment to specify RUN_ID environment variable (#2839)
adamdoupe Sep 9, 2025
8c20460
Integrate dynamic scoring challenges (#2842)
ColdHeat Sep 11, 2025
f5946ff
Fix issue where standard challenges with static function couldn't be …
ColdHeat Sep 12, 2025
6907374
Revert "Try using subtree split to mirror core theme (#2837)" (#2845)
ColdHeat Sep 15, 2025
92b4bc0
Fix typo in teams/private.html (#2847)
ColdHeat Sep 16, 2025
d7871a5
Only check preset admin account by email (#2853)
ColdHeat Sep 18, 2025
d85e580
New Crowdin updates (#2855)
ColdHeat Sep 24, 2025
9776ee0
Rebuild mo files and add Hebrew language constant (#2856)
ColdHeat Sep 24, 2025
fe7acce
New Crowdin updates (#2857)
ColdHeat Sep 24, 2025
f63d2dd
Add Uzbek language constant and recompile .mo files (#2859)
ColdHeat Sep 24, 2025
15e2d7d
Update pytest packages (#2860)
khiemdoan Sep 26, 2025
26d1cce
If UPDATE_CHECK is set we should remove any existing latest version (…
ColdHeat Oct 8, 2025
5ca5f7a
Update solutions API not available response code (#2868)
ColdHeat Oct 9, 2025
0f52be3
Fix issue where new built-in dynamic columns conflicted with plugin b…
ColdHeat Oct 10, 2025
220cc00
Add hint, ratings, reviews to populate.py (#2870)
ColdHeat Oct 12, 2025
78854f8
Add EXTRA_CONFIGS_FORCE_TYPES config to force extra config types (#2872)
ColdHeat Oct 13, 2025
a16c4c5
Add simple styling to button for EMAIL_CONFIRMATION_REQUIRE_INTERACTI…
ColdHeat Oct 14, 2025
be2c7a8
Merge remote-tracking branch 'upstream/master' into feat/versionupgrade
ty-kim7 Oct 17, 2025
776529c
fix: deadline issue
ty-kim7 Oct 17, 2025
a9192de
feat: export
ty-kim7 Oct 17, 2025
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
30 changes: 30 additions & 0 deletions .github/workflows/mirror-core-theme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Mirror core-theme
on:
push:
branches:
- main
workflow_dispatch:

jobs:
mirror:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # need full history for subtree

- name: Setup SSH for deploy key
run: |
mkdir -p ~/.ssh
echo "${{ secrets.CORE_THEME_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_hosts

- name: Setup git identity
run: |
git config user.name "github-actions[bot]"
git config user.email "username@users.noreply.github.com"

- name: Push subtree
run: |
git subtree push --prefix="CTFd/themes/core" "git@github.com:CTFd/core-theme.git" main
Binary file added CTFd/translations/he/LC_MESSAGES/messages.mo
Binary file not shown.
Loading