-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from ocaml-wasm/clean-up
Clean up: remove unused or duplicated code
- Loading branch information
Showing
27 changed files
with
296 additions
and
3,717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Daily Merge with ocsigen/js_of_ocaml | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Executes daily at midnight UTC | ||
workflow_dispatch: # Allows manual triggering of the workflow | ||
push: | ||
|
||
jobs: | ||
merge: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout this repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: main | ||
fetch-depth: 1000 | ||
|
||
- name: Fetch js_of_ocaml master | ||
run: git fetch https://github.com/ocsigen/js_of_ocaml.git master | ||
|
||
- name: Merge js_of_ocaml master into current repository | ||
run: git merge FETCH_HEAD | ||
|
||
- name: Push merged changes to 'jsoo-merged' branch | ||
run: | | ||
if git show-ref --verify --quiet refs/heads/jsoo-merged; then | ||
git branch -D jsoo-merged | ||
fi | ||
git checkout -b jsoo-merged | ||
git push --force origin jsoo-merged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.