Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

[pull] live from master #40

Merged
merged 2 commits into from
Nov 13, 2023
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: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow builds every branch of the repository daily at 20:22 UTC, one hour after ublue-os/nvidia builds.
# This workflow builds every branch of the repository daily at 16:30 UTC, one hour after ublue-os/nvidia builds.
# The images are also built after pushuing changes or pull requests.
# The builds can also be triggered manually in the Actions tab thanks to workflow dispatch.
# Only the branch called `live` is published.
Expand All @@ -7,7 +7,7 @@
name: build-ublue
on: # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
schedule:
- cron: "20 22 * * *"
- cron: "30 16 * * *"
push:
branches:
- live
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fork-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
- name: sync template
run: gh repo sync vietchinh/ulightblue -b template
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.FORK_SYNC_TOKEN }}
REPOSITORY: ${{ github.repository }}
BRANCH_NAME: template
- name: sync main
run: gh repo sync vietchinh/ulightblue -b master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.FORK_SYNC_TOKEN }}
REPOSITORY: ${{ github.repository }}
BRANCH_NAME: template
- name: sync live
run: gh repo sync vietchinh/ulightblue -b live
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.FORK_SYNC_TOKEN }}
REPOSITORY: ${{ github.repository }}
BRANCH_NAME: template
Loading