Skip to content

Commit

Permalink
2.2 develop (#69)
Browse files Browse the repository at this point in the history
* first update the version

* computer to compute

* Dark mode as default

* updating workflows

* Updating homepage

* Changing wording a little

* Redesigning navbar (genshin only atm)

* alright... simplified the navbar a bit, also moving hsr menu to left

* no need for default anymore

* for days summary, show future stuff

* banners/patches all in one

* clarifying day discrepancy

* removing branch for push

* fixing up e2e test
  • Loading branch information
benlei committed Nov 11, 2023
1 parent f56a47f commit 3ad7d52
Show file tree
Hide file tree
Showing 27 changed files with 1,798 additions and 1,510 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
name: Samsara Workflow
on:
workflow_dispatch:
schedule:
- cron: '30 7 * * MON,WED,FRI'
pull_request:
types:
- opened
- synchronize
branches:
- 'main'
- 'v2-trunk'
push:
branches:
- 'main'
- 'v2-trunk'
paths-ignore:
- '**.md' # ignore docs, they don't contribute to the build process

Expand Down Expand Up @@ -75,7 +71,11 @@ jobs:
test-results/**/*.png
test-results/**/*.webm
deploy:
if: ${{ github.ref_name == 'main' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
if: |
github.ref_name == 'main' && (
(github.event_name == 'push' && github.actor == 'github-actions' && github.event.head_commit.message == 'generated: automatic data updating') ||
github.event_name == 'workflow_dispatch'
)
needs: 'build'
runs-on: ubuntu-latest
name: Deploy
Expand Down
Loading

0 comments on commit 3ad7d52

Please sign in to comment.