Skip to content

Commit ca0a54d

Browse files
committed
sync-git-mailing-list-mirror: start making the workflow more generic
I want to use the same workflow in a fork to synchronize _Cygwin's_ mailing list mirror; Let's rename the workflow and its job so that it stops claiming to synchronize _Git's_ mailing list mirror. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 265711c commit ca0a54d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/sync-git-mailing-list-mirror.yml renamed to .github/workflows/sync-mailing-list-mirror.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: sync-git-mailing-list-mirror
1+
name: sync-mailing-list-mirror
22

33
on:
44
workflow_dispatch:
@@ -11,11 +11,11 @@ env:
1111
TARGET_GITHUB_REPOSITORY: gitgitgadget/git-mailing-list-mirror
1212

1313
concurrency:
14-
group: sync-git-mailing-list-mirror
14+
group: sync-mailing-list-mirror
1515
cancel-in-progress: true
1616

1717
jobs:
18-
sync-git-mailing-list-mirror:
18+
sync-mailing-list-mirror:
1919
runs-on: ubuntu-latest
2020
permissions:
2121
contents: write

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ This repository contains GitHub workflows, i.e. automated tasks, that keep [GitG
44

55
## Keeping the mirror of the Git mailing list up to date
66

7-
The `sync-git-mailing-list.yml` workflow keeps the mirror at https://github.com/gitgitgadget/git-mailing-list of the Git mailing list mirror at https://lore.kernel.org/git up to date. Since that mirror chunks the archive by epochs, this mirror fetches each epoch into its own branch: the oldest epoch into `lore-0`, the next one into `lore-1`, etc.
7+
The `sync-mailing-list-mirror.yml` workflow keeps the mirror at https://github.com/gitgitgadget/git-mailing-list of the Git mailing list mirror at https://lore.kernel.org/git up to date. Since that mirror chunks the archive by epochs, this mirror fetches each epoch into its own branch: the oldest epoch into `lore-0`, the next one into `lore-1`, etc.
88

99
Previously, this workflow lived in the `git-mailing-list` repository in the `sync` branch, which was the default branch because scheduled workflows _must_ live in the default branch.

0 commit comments

Comments
 (0)