Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.5%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: actions-marketplace-validations
  • License: mit
  • Language: Shell
  • Default Branch: main
  • Size: 374 KB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 3
  • Releases: 0
Created about 3 years ago · Last pushed almost 3 years ago
Metadata Files
Readme Contributing Funding License Code of conduct Citation Codeowners Security

README.md

actions-template-sync

All Contributors <!-- ALL-CONTRIBUTORS-BADGE:END -->

actions-template-sync

Lint

shellcheck

test

test-hooks

test-ssh

test-ssh-gitlab

push-docker

gh-pages-mk-docs

abstract

Synchronise git repositories in an automated manner. Different git providers like GitHub (enterprise), GitLab,.. are supported as the source provider. This can help you e.g. for migration from another git provider to GitHub or if you want to mirror git repositories.

History

It is possible to create repositories within Github with GitHub templates. This is a nice approach to have some boilerplate within your repository. Over the time the template repository will get some code changes. The problem is that the already created repositories won't know about those changes. This GitHub action will help you to keep track of the template changes. The initial author of this repository faced that issue several times and decided to write a github action to face that issue. Because of the nice community, several feature requests helped to go on with development of the action. Now several other features are supported.

Features

mermaid flowchart LR github_source("fa:fa-github <b>GitHub</b> source repository <b>[private|public]</b>") gitlab_source("fa:fa-gitlab <b>GitLab</b> source repository <b>[private|public]</b>") any_source("fa:fa-git <b>Any</b> git provider <b>[private|public]</b>") github_target{{"fa:fa-github <b>GitHub</b> target repository <b>[private|public]</b>"}} github_source --> |"<b>ssh | PAT | github app</b>"| github_target gitlab_source --> |"<b>ssh</b>"| github_target any_source --> |"<b>ssh</b>"| github_target

  • Sync other public or private repository (e.g. template repositories) with the current repository
  • Ignore files and folders from syncing using a .templatesyncignore file
  • many configuration options
  • different lifecycle hooks are supported. This opens the possibility to inject custom code into the workflow with a yaml definition file.
  • different git provider like GitLab, Gittea,.. as source are supported (with ssh). See .github/workflows/testsshgitlab.yml for an example.
  • It is not necesarly needed that source and target repository have same base history. Because of that reason it is possible to merge 2 total different repositories with the help of the action.

Usage

Usage changes depending on whether the template repository is public or private, regardless of the visibility of current repository.

Public template repository

Add this configuration to a github action in the current repository:

```yaml

File: .github/workflows/template-sync.yml

on: # cronjob trigger schedule: - cron: "0 0 1 * *" # manual trigger workflow_dispatch: jobs: repo-sync: runs-on: ubuntu-latest

steps:
  # To use this repository's private action, you must check out the repository
  - name: Checkout
    uses: actions/checkout@v3
  - name: actions-template-sync
    uses: AndreasAugustin/actions-template-sync@v0.8.0
    with:
      github_token: ${{ secrets.GITHUB_TOKEN }}
      source_repo_path: <owner/repo>
      upstream_branch: <target_branch> # defaults to main
      pr_labels: <label1>,<label2>[,...] # optional, no default

```

You will receive a pull request within your repository if there are some changes available in the template.

Private template repository

If your current repository was created from a private template, there are several possibilities.

1. Using github app

You can create and use a GitHub App to handle the access to the private template repository. To generate a token for your app you can use a separate action like tibdex/github-app-token.

```yaml jobs: repo-sync: runs-on: ubuntu-latest

steps:
 - name: Generate token to read from source repo # see: https://github.com/tibdex/github-app-token
    id: generate_token
    uses: tibdex/github-app-token@v1
    with:
      app_id: ${{ secrets.APP_ID }}
      private_key: ${{ secrets.PRIVATE_KEY }}

  - name: actions-template-sync
    uses: AndreasAugustin/actions-template-sync@v0.8.0
    with:
      github_token: ${{ steps.generate_token.outputs.token }}
      source_repo_path: <owner/repo>
      upstream_branch: <target_branch> # defaults to main
      pr_labels: <label1>,<label2>[,...] # optional, no default

```

2. SSH

You have various options to use ssh keys with GitHub. An example are deployment keys. For our use case write permissions are not needed. Within the current repository, where the GitHub action is enabled, add a secret (e.q. SOURCE_REPO_SSH_PRIVATE_KEY) with the content of your private SSH key. Make sure that the read permissions of that secret fulfil your use case. Set the optional source_repo_ssh_private_key input parameter. It is also possible to use a different git provider, e.g. GitLab.

```yaml jobs: repo-sync: runs-on: ubuntu-latest

steps:
  # To use this repository's private action, you must check out the repository
  - name: Checkout
    uses: actions/checkout@v3
  - name: actions-template-sync
    uses: AndreasAugustin/actions-template-sync@v0.8.0
    with:
      github_token: ${{ secrets.GITHUB_TOKEN }}
      source_repo_path: ${{ secrets.SOURCE_REPO_PATH }} # <owner/repo>, should be within secrets
      upstream_branch: ${{ secrets.TARGET_BRANCH }} #<target_branch> # defaults to main
      pr_labels: <label1>,<label2>[,...] # optional, no default
      source_repo_ssh_private_key: ${{ secrets.SOURCE_REPO_SSH_PRIVATE_KEY }} # contains the private ssh key of the private repository

```

3. PAT

:warning: when the source repository is private using PATs, also the target repository must be private. Else it won't work.

Personal access token are an alternative to using passwords for authentication to GitHubYou can add a kind of password to your github account. You need to set the scopes

  • repo -> all
  • read:org

pat-scopes

Furthermore you need to set the access within the source repository to allow github actions within the target repository. As mentioned before (you can see the note in the image) you need to set the target repository to private. settings -> actions -> general.

pat-srouce-repo-access

example workflow definition

```yml name: actions-template-sync

on: # cronjob trigger At 00:00 on day-of-month 1. https://crontab.guru/every-month schedule: - cron: "0 0 1 * *" # manual trigger workflow_dispatch:

jobs: test-implementation-job:

runs-on: ubuntu-latest

steps:
  # To use this repository's private action, you must check out the repository
  -
    name: Checkout
    uses: actions/checkout@v3
  -
    name: Test action step PAT
    uses: AndreasAugustin/actions-template-sync@v0.8.0
    with:
      github_token: ${{ secrets.SOURCE_REPO_PAT }}
      source_repo_path: ${{ secrets.SOURCE_REPO_PATH }} # <owner/repo>, should be within secrets

```

Configuration parameters

| Variable | Description | Required | [Default] | |----|----|----|----| | githubtoken | Token for the repo. Can be passed in using `${{ secrets.GITHUBTOKEN }}|true| | | source_repo_path | Repository path of the template |true| | | upstream_branch | The target branch |true|main| | source_repo_ssh_private_key |[optional]private ssh key for the source repository. [see](#private-template-repository)|false| | | pr_branch_name_prefix |[optional]the prefix of branches created by this action |false|chore/templatesync` | | prtitle | [optional] the title of PRs opened by this action. Must be already created. | false | upstream merge template repository | | prlabels | [optional] comma separated list. pull request labels. Must be already created. | false | | | prcommitmsg | [optional] commit message in the created pull request | false | chore(template): merge template changes :up: | | hostname | [optional] the hostname of the repository | false | github.com | | isdryrun | [optional] set to true if you do not want to push the changes and not want to create a PR | false | | | isallowhooks | [optional] set to true if you want to enable lifecycle hooks. Use this with caution! | false | false | | isnotsourcegithub | [optional] set to true if the source git provider is not GitHub | false | false | | gitusername | [optional] set the committer git user.name | false | ${GITHUB_ACTOR} | | gituseremail | [optional] set the committer git user.email | false | github-action@actions-template-sync.noreply.${SOURCE_REPO_HOSTNAME} | | gitremotepull_params |[optional] set remote pull parameters | false | --allow-unrelated-histories --squash --strategy=recursive -X theirs |

Example

This repo uses this template and this action from the marketplace. See the definition here.

If you look for a more detailed guide you can have a look at Dev.to or GitHub

Trigger

You can use all triggers which are supported for GitHub actions

Ignore Files

Create a .templatesyncignore file. Just like writing a .gitignore file, follow the glob pattern in defining the files and folders that should be excluded from syncing with the template repository.

It can also be stored inside .github folder.

Note: It is not possible to sync also the .templatesyncignore itself. Any changes from the template repository will be restored automatically.

Lifecycle hooks

Different lifecycle hooks are supported. You need enable the functionality with the option is_allow_hooks and set it to true :warning: use this functionality with caution. You can use one of the available docker images to test it out. With great power comes great responsibility.

In addition you need a configuration file with the name templatesync.yml within the root of the target repository.

Following hooks are supported (please check docs/ARCHITECTURE.md for a better understanding of the lifecycles).

  • install is executed after the container has started and after reading and setting up the environment.
  • prepull is executed before the code is pulled from the source repository
  • prepush is executed before the push is executed, right after the commit
  • prepr is executed before the PR is done

Remark The underlying OS is defined by an alpine container. E.q. for the installation phase you need to use commands like apk add --update --no-cache python3

Schema and example for the temlatesync.yml

yml hooks: install: commands: - apk add --update --no-cache python3 - python3 --version prepull: commands: - echo 'hi, we are within the prepull phase' - echo 'maybe you want to do adjustments on the local code' prepush: commands: - echo 'hi, we are within the prepush phase' - echo 'maybe you want to add further changes and commits' prepr: commands: - echo 'hi, we are within the prepr phase' - echo 'maybe you want to change the code a bit and do another push before creating the pr'

Troubleshooting

  • refusing to allow a GitHub App to create or update workflow .github/workflows/******.yml without workflows permission

This happens because the template repository is trying to overwrite some files inside .github/workflows/. Currently a github action can't overwrite these files. To ignore those, simply create a file in the root directory named .templatesyncignore with the content .github/workflows/.

  • pull request create failed: GraphQL: GitHub Actions is not permitted to create or approve pull requests (createPullRequest)

Open your project Settings > Actions > General and select the checkbox Allow Github Actions to create and approve pull requests under the Workflow permissions section.

Release Updates

starting with version v0.5.2-draft the templateversionrc file is not needed anymore. You can delete that file from the target repositories.

Debug

You must create a secret named ACTIONS_STEP_DEBUG with the value true to see the debug messages set by this command in the log. For more information, see "Enabling debug logging."

DEV

The development environment targets are located in the Makefile

bash make help

For some architectural notes please have a look into docs

Contributors ✨

Thanks goes to these wonderful people (emoji key):

andy Augustin
andy Augustin

📖 💻 👀 🛡️ 🤔 💬 💡 🖋 📝
Ugo Pattacini
Ugo Pattacini

📖
Jose Gabrielle Rivera
Jose Gabrielle Rivera

💻
P.D. Rittenhouse
P.D. Rittenhouse

🤔
Daniel Boll
Daniel Boll

🐛
albertschwarzkopf
albertschwarzkopf

🤔
Akul Pillai
Akul Pillai

🛡️
Stefan Riembauer
Stefan Riembauer

🤔
Fabrizio Cacicia
Fabrizio Cacicia

🛡️ 🐛
Justin Tunis
Justin Tunis

🤔 💻 🐛
Michael Matos
Michael Matos

🐛
Gavin Williams
Gavin Williams

🤔
Marc Siebeneicher
Marc Siebeneicher

🤔 💻 🐛 📖
Luís Henrique A. Schünemann
Luís Henrique A. Schünemann

🤔 📖 💻
George
George

💬 📖 🤔
Pedro Rivero
Pedro Rivero

🤔

This project follows the all-contributors specification. Contributions of any kind welcome!

Owner

  • Name: actions-marketplace-validations
  • Login: actions-marketplace-validations
  • Kind: organization

Temporarily holds mirrors of GitHub Actions from the marketplace

Citation (CITATION.cff)

# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: github-action-template-sync
message: >-
  If you use this software, please cite it using the
  metadata from this file.
type: software
authors:
  - given-names: Andreas
    family-names: Augustin
    orcid: 'https://orcid.org/0009-0003-8658-2370'
repository-code: 'https://github.com/AndreasAugustin/actions-template-sync'
url: 'https://andreasaugustin.github.io/actions-template-sync/'
abstract: >-
  Synchronise git repositories in an automated manner.
  Different git providers like GitHub (enterprise),
  GitLab,.. are supported as the source provider. This can
  help you e.g. for migration from another git provider to
  GitHub or if you want to mirror git repositories.
keywords:
  - github
  - repo-sync
license: MIT
version: v0.8.0

GitHub Events

Total
Last Year

Dependencies

.github/workflows/actions_template_sync.yml actions
  • AndreasAugustin/actions-template-sync v0.8.0 composite
  • actions/checkout v3 composite
.github/workflows/gh_pages_mk_docs.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/greetings.yml actions
  • actions/first-interaction v1 composite
.github/workflows/label.yml actions
  • actions/labeler v2 composite
.github/workflows/lint.yml actions
  • actions/checkout v3 composite
.github/workflows/push_docker.yml actions
  • actions/checkout v3 composite
  • docker/build-push-action v3 composite
  • docker/login-action v2 composite
  • docker/metadata-action v4 composite
  • peter-evans/dockerhub-description v3 composite
.github/workflows/shellcheck.yml actions
  • actions/checkout v3 composite
.github/workflows/stale.yml actions
  • actions/stale v4.1.0 composite
.github/workflows/test.yml actions
  • ./ * composite
  • actions/checkout v3 composite
.github/workflows/test_hooks.yml actions
  • ./ * composite
  • actions/checkout v3 composite
.github/workflows/test_ssh.yml actions
  • ./ * composite
  • actions/checkout v3 composite
.github/workflows/test_ssh_gitlab.yml actions
  • ./ * composite
  • actions/checkout v3 composite
action.yml actions
  • src/Dockerfile * docker
.devcontainer/docker-compose.yml docker
Dockerfile docker
  • alpine 3.17.2 build
  • node 19.8.1-alpine build
docker-compose.yml docker
  • koalaman/shellcheck v0.7.2
src/Dockerfile docker
  • alpine 3.17.2 build