Compare commits

...

4 Commits

Author SHA1 Message Date
Guy Sartorelli b6e13b3fdc
Merge pull request #77 from Cheddam/pulls/3.3/jquery-3.7.1-update
DEP Update jQuery to 3.7.1
2023-11-17 14:42:56 +13:00
Garion Herman d3228db60d DEP Update jQuery to 3.7.1 2023-11-17 14:16:55 +13:00
Guy Sartorelli 8cf628a1a5
Merge pull request #76 from creative-commoners/pulls/3.3/module-standardiser-1693279893
MNT Run module-standardiser
2023-08-29 17:15:20 +12:00
Steve Boyd 08c7ec0c14 MNT Run module-standardiser 2023-08-29 15:31:33 +12:00
3 changed files with 35 additions and 1 deletions

17
.github/workflows/keepalive.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Keepalive
on:
# At 10:50 PM UTC, on day 27 of the month
schedule:
- cron: '50 22 27 * *'
workflow_dispatch:
jobs:
keepalive:
name: Keepalive
# Only run cron on the silverstripe-themes account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe-themes') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1

17
.github/workflows/merge-up.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Merge-up
on:
# At 10:50 PM UTC, only on Friday
schedule:
- cron: '50 22 * * 5'
workflow_dispatch:
jobs:
merge-up:
name: Merge-up
# Only run cron on the silverstripe-themes account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe-themes') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Merge-up
uses: silverstripe/gha-merge-up@v1

View File

@ -37,7 +37,7 @@ Change it, enhance it and most importantly enjoy it!
</div>
<% include Footer %>
<% require javascript('//code.jquery.com/jquery-3.3.1.min.js') %>
<% require javascript('//code.jquery.com/jquery-3.7.1.min.js') %>
<% require themedJavascript('script') %>
</body>