-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
102 lines (99 loc) · 3.33 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
name: synchronise-upstream
description: |-
A GitHub Action for synchronising template changes from upstream into a
downstream repository through a pull request
inputs:
token:
description: |
The GitHub Token to fetch the template repository and to make changes
against the local repository. This is typically set to
`secrets.GITHUB_TOKEN`.
required: true
repository:
description: |
The owner/name (i.e. n3tuk/template-terraform-module) of the GitHub
repository used to provide the cookiecutter templates for this local
repository.
required: true
branch:
description: |
[optional] The name of the branch to use in the GitHub repository used to
provide the cookiecutter templates for the local repository.
default: 'main'
target:
description: |
[optional] The target branch of the local repository to raise the Pull
Request against whem procesing for changes in the template repository or
local configuration.
default: 'main'
prefix:
description: |
[optional] The prefix for the name of the pull request branch created by
this GitHub Action when processing for changes in the template repository
or local configuration.
default: 'chore/synchronise-upstream/'
title:
description: |
[optional] The title of the pull request set by this GitHub Action when
processing for changes in the template repository or local configuration.
default: 'Synchronise Upstream Template Changes'
labels:
description: |
[optional] A comma-separated list of pull request labels to add by this
GitHub Action on any created pull request.
default: ""
runs:
using: 'composite'
steps:
- name: Install Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Dependencies
shell: bash
run: pip install -r requirements.txt
- name: Prepare the local environment
id: prepare
shell: bash
env:
GITHUB_TOKEN: ${{ inputs.token }}
REPOSITORY: ${{ inputs.repository }}
BRANCH: ${{ inputs.branch }}
TARGET: ${{ inputs.target }}
PREFIX: ${{ inputs.prefix }}
run: |-
${{ github.action_path }}/bin/prepare
- name: Update files in the downstream repository
shell: bash
env:
TEMPLATES: ${{ steps.prepare.outputs.templates }}
run: |-
${{ github.action_path }}/bin/updates
- name: Remove files in the downstream repository
shell: bash
env:
TEMPLATES: ${{ steps.prepare.outputs.templates }}
run: |-
${{ github.action_path }}/bin/removes
- name: Render the upstream templates onto the downstream repository
shell: bash
env:
TEMPLATES: ${{ steps.prepare.outputs.templates }}
run: |-
${{ github.action_path }}/bin/render
- name: Commit and raise pull request for downstream repository
shell: bash
env:
GITHUB_TOKEN: ${{ inputs.token }}
REPOSITORY: ${{ inputs.repository }}
COMMIT: ${{ steps.prepare.outputs.template-sha }}
TARGET: ${{ inputs.target}}
PREFIX: ${{ inputs.prefix }}
TITLE: ${{ inputs.title }}
LABELS: ${{ inputs.labels }}
run: |-
${{ github.action_path }}/bin/commit
branding:
icon: file-text
color: gray-dark