-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 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,18 @@ | ||
# Actions Sync for OpenWoW | ||
|
||
This repository automates the synchronization of public GitHub Actions to this GitHub instance hosted at `https://openwow.dev` using the [`actions/actions-sync`](https://github.com/actions/actions-sync) tool. | ||
|
||
## How it Works | ||
|
||
The synchronization is handled by the GitHub Actions workflow defined in `.github/workflows/actions-sync.yaml`. | ||
|
||
1. **Trigger:** The workflow runs automatically: | ||
* On a schedule (daily at 00:00 UTC). | ||
* On pushes to the `master` branch. | ||
* Manually via `workflow_dispatch`. | ||
2. **Setup:** The workflow checks out this repository and downloads the `actions-sync` binary. | ||
3. **Sync:** It reads the list of target repositories from `mirrored-repositories.txt` and uses `actions-sync` to mirror them to the `https://openwow.dev` GitHub instance. | ||
|
||
## Configuration | ||
|
||
* **Repositories to Sync:** Add or remove repository names (in `owner/repo` format, one per line) in the `mirrored-repositories.txt` file. |