GitHub Action
Files Sync Action
A Github Action that can sync files from one repository to many others. This action allows a maintainer to define community health files in a single repository and have them synced to all other repositories in the Github organization or beyond. You could sync common GitHub Action Workflows, your LICENSE or any other file you can imagine. Regex is used to select the files. Exclude is currently not supported and it is recommended to use a bot user if possible.
Required Token to use to get repos and write secrets. ${{secrets.GITHUB_TOKEN}}
will not work.
Source of truth for all files to sync. If files get added, modified or deleted here, those changes will be synced to all TARGET_REPOS. Defaults to the workflows repository ($GITHUB_REPOSITORY
)
Required New line deliminated list of repositories. Repositires are limited to those in which the token user is an owner or collaborator.
Required New line deliminated regex expressions to select files from the source repository. All matching files in the target repository will be
- deleted if not present in the
SRC_REPO
, andSKIP_DELETE
isfalse
- overwritten from the
SRC_REPO
if they already exist in theTARGET_REPO
- created in the
TARGET_REPO
, if they do not exist yet there.
All filpaths start at the repository root without a leading slash. The delimiter between path segments is always a forward slash.
Will omit all delete operations for matching files present in TARGET_REPO
but not existant in SRC_REPO
if set to true
. Defaults to false
.
The working directory where all sync operations will be done. Defaults to tmp-${Date.now().toString()}
If set to true or 1, the cleanup step to remove the temporary workding directory at the end will be skipped. Usefull for debugging purposes. Defaults to false
.
The e-mail address used to commit the synced files. Defaults to ${process.env.GITHUB_ACTOR}@users.noreply.github.com
.
The username used to commit the synced files. Defaults to process.env.GITHUB_ACTOR
.
Run everything except for secret create and update functionality. Defaults to false
.
uses: adrianjost/files-sync-action@master
with:
FILE_PATTERNS: |
^LICENSE$
^.github/workflows/sync-.*
TARGET_REPOS: |
adrianjost/files-sync-target
any/other-repo
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_FILES }}
See the workflows in this repository for another example.
- allow RegExp for repo selection just like in google/secrets-sync-action allows it.
- add option to skip replacement of files