This action updates files in Landing Zone Repositories.
It can be used with two strategies:
repoSources
(Preferred) source directories.repoTemplate
GitHub template repository.
It will sync all files in the respective source to the target Landing Zone repository.
In addition, it will delete any files located in an delete-files.json
file containing file paths and file hashes.
To use this action, implement the steps as shown below in your workflow.
# ...
permissions: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get GH Token
id: gh-app-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.GH_APP_ID }}
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
- name: Update Landing Zone Repository
uses: climpr/update-landing-zone-repository@v1
with:
landing-zone-path: ${{ path-to-landing-zone-dir }}
repo-sources-path: lz-management/repo-sources
github-token: ${{ steps.gh-app-token.outputs.token }}
# ...
- If the Landing Zone is configured to use the
repoSource
strategy, it requires the repository to be checked out first. - A GitHub token that has
Read and write
permissionsContents
on the target Landing Zone repository. - A
delete-files.json
configuration file for specifying which files to delete. More on this file in a separate chapter.
The target Landing Zone can be configured with either of the two strategies. The prerequisites for the strategies are as follows:
- A
repo-sources
directory in the repository running this action. - A
source
subdirectory in therepo-sources
directory corresponding to therepoSources.source
property in the Landing Zone configuration file. - The named
source
directory must contain acontents
subdirectory containing the source files to copy. - The named
source
directory must contain adelete-files.json
file, specifying which files to delete. More on this file in a separate chapter.
Tip
The repo-sources
directory can contain multiple source
subdirectories to support different repositories having different sources or versioning sources.
The file structure must be as follows:
../
repo-sources/
<source>/
delete-files.json
contents/
...<source files>
...<source files>
<source2>/
delete-files.json
contents/
...
As opposed to the repoSource
strategy, the repoTemplate
- A GitHub repository corresponding to the
repoTemplate
property in the Landing Zone configuration file. - The GitHub template repository must be configured as a template repository in GitHub.
- The GitHub repository must contain the source files for the update operation.
- The GitHub repository must contain a
delete-files.json
file in the root directory.
The file structure must be as follows:
<Repository>/
delete-files.json
...<source files>
...<source files>
This action requires you to create a delete-files.json
configuration file.
As the target repositories will contain files that are not part of the source directories or repositories, we cannot know which files to delete without explicitly configuring them.
The delete-files.json
file is used to specify which files to delete and which files to skip.
To create this file, start with an empty file and add the following content:
{
"$schema": "https://raw.githubusercontent.com/climpr/climpr-schemas/main/schemas/v1.0.0/lz-management/delete-files.json#"
}
This will ensure you have auto-complete and validation for the configuration file.
An example file looks like this:
Tip
You can use either the hash
property for a single file hash, or hashes
property for a list of file hashes. This can be useful if you want to support multiple versions of the same file.
{
"$schema": "https://raw.githubusercontent.com/climpr/climpr-schemas/main/schemas/v1.0.0/lz-management/delete-files.json#",
// A list of directory relative paths that should be excluded from processing.
"directoriesToExclude": [
".git" // The '.git', 'delete-files.json' and 'delete-files.jsonc' directory and files are always excluded.
],
// A list of directory relative paths that should be deleted.
"filesToDelete": [
{
"path": "string", // Relative path to file
"hash": "3A888546831AE05A0EC1D040DE396262284E4B4FC0066A00D56016BF3955C90E" // File hash
},
{
"path": "string", // Relative path to file
"hashes": [
// List of file hashes
"3A888546831AE05A0EC1D040DE396262284E4B4FC0066A00D56016BF3955C90E"
]
}
]
}
Generating file hashes is done by using the Get-FileHash
command in PowerShell.
In this example, the file hash is the string under Hash
below.
Get-FileHash "./directory/file.txt"
# Result
# Algorithm Hash Path
# --------- ---- ----
# SHA256 E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855 <root-path>/directory/file.txt
(Required) Path to the Landing Zone directory.
(Required) Path to the 'repo-sources' directory.
(Required) The token for the GitHub app that is allowed to create and update repositories in the organization.
A JSON list of the deleted files relative to the 'path' input parameter.
A JSON list of the deleted directories relative to the 'path' input parameter.