-
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.
Subscription howto and mirror workflow
- Loading branch information
Showing
2 changed files
with
24 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 @@ | ||
name: Mirror to ARFNET | ||
|
||
on: [push] | ||
|
||
env: | ||
REMOTE_REPO: arfnet2-lists | ||
REMOTE_SERVER: git.arf20.com | ||
|
||
jobs: | ||
push-mirror: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repo | ||
run: git clone https://github.com/${{ github.repository }} | ||
|
||
- name: Push to remote repo | ||
run: cd $REMOTE_REPO && git push -u https://${{ secrets.MIRROR_USER }}:${{ secrets.MIRROR_PASSWORD }}@$REMOTE_SERVER/$REMOTE_REPO master | ||
|
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 |
---|---|---|
|
@@ -29,6 +29,12 @@ | |
} | ||
?> | ||
</ul> | ||
<hr> | ||
<h2>Subscription</h2> | ||
<ul> | ||
<li>To subscribe to a list, send a message to [email protected] or go to https://lists.arf20.com/subscribe.php?list=list</li> | ||
<li>To unsubscribe, send a message to [email protected] or go to https://lists.arf20.com/subscribe.php?list=list</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</main> | ||
|