Simple Python Script To Auto Trigger Gitea Mirror Using Github Action
ℹ︎ This Action uses Github > Gitea Mirror Script. And The Arguments supported by that script is supported here to
Yes this script Github > Gitea Mirror Can be ran inside the selfhosted instance. but i created this action for few reasons
Option | Description |
---|---|
github.username |
Your Github Username |
github.accesstoken |
Your Github Account’s Personal Access Token |
- | - |
gitea.host |
Selfhosted Gitea URL without / at the end |
gitea.accesstoken |
Your Personal Access Token |
gitea.username |
Account User Name |
gitea.gist.prefix |
Custom Prefix For Repository When Mirroring Gists |
gitea.gist.surfix |
Custom Prefix For Repository When Mirroring Gists |
- | - |
repomap |
Remap A Repository To Diff User |
gistsSource |
set to true to mirror all Gists Created By You |
gistsStared |
set to true to mirror all Gists Stared By You |
repositoryStared |
set to true to mirror all Repository Stared By You |
repositorySource |
set to true to mirror all Repository Created By You |
repositoryForked |
set to true to mirror all Repository Forked By You |
Below workflow file triggers when anything is pushed to main
branch or runs every Day
or can be triggered manually
Please do make sure to setup the Secrets
name: " ⏳ Gitea Mirror Setup"
on:
workflow_dispatch:
schedule:
- cron: 0 0 * * *
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: varunsridharan/action-gitea-mirror@main
name: " ⏳ Setting Up Mirror"
with:
gh_username: ${{ secrets.GH_USERNAME }}
gh_accesstoken: ${{ secrets.GH_TOKEN }}
gitea_host: ${{ secrets.GITEA_HOST }}
gitea_username: ${{ secrets.GITEA_USERNAME }}
gitea_accesstoken: ${{ secrets.GITEA_TOKEN }}
gitea_gist_prefix: "gist"
gitea_gist_surfix: ""
gistsSource: true
gistsStared: true
repositoryStared: true
repositorySource: true
repositoryForked: true
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog,
and this project adheres to Semantic Versioning.
If you would like to help, please take a look at the list of issues.
I fell in love with open-source in 2013 and there has been no looking back since! You can read more about me here.
If you, or your company, use any of my projects or like what I’m doing, kindly consider backing me. I’m in this for the long run.
Built With ♥ By Varun Sridharan