Ecr - updating semantic version to 1.0.2 #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Synchronizing Cloudformation repo with serverless | |
on: | |
pull_request: | |
types: [closed] | |
branches: [master, main] | |
paths: | |
- "src/**/template.*" | |
- "src/**/README.md" | |
jobs: | |
Get-matrix: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
outputs: | |
packages: ${{ env.packages }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Read matrix YAML | |
id: read-matrix | |
run: | | |
export PACKAGES=$(jq -r '.[].name' matrix.js | jq -rcnR '[inputs]') | |
echo "packages=$PACKAGES" >> $GITHUB_ENV | |
# to save a directory as an Artifact it must contain a file | |
- name: Create template-readme-directory | |
run: | | |
mkdir template-readme-directory | |
touch template-readme-directory/file.tmp | |
- name: Upload template-readme-directory | |
uses: actions/upload-artifact@v2 | |
with: | |
name: template-readme-directory | |
path: ./template-readme-directory/ | |
- name: Create changes file list | |
run: touch change_file_list.txt | |
- name: Upload changes file list | |
uses: actions/upload-artifact@v2 | |
with: | |
name: change_file_list | |
path: change_file_list.txt | |
Apply-changes: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
needs: Get-matrix | |
strategy: | |
matrix: | |
package: ${{ fromJSON(needs.Get-matrix.outputs.packages) }} | |
max-parallel: 1 | |
steps: | |
- uses: actions/checkout@v2 | |
- id: changes | |
uses: dorny/paths-filter@v2 | |
with: | |
filters: | | |
'${{ matrix.package }}': | |
- 'src/${{ matrix.package }}/**' | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Change template and README to CF | |
run: | | |
chmod +x replace_codeuri.sh | |
./replace_codeuri.sh src/${{ matrix.package }}/template.* ${{ matrix.package }} src/${{ matrix.package }}/README.md | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Create template and readme directory | |
run: mkdir template-readme-directory | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Download template and readme artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: template-readme-directory | |
path: ./template-readme-directory | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Add integration to matrix file | |
run: | | |
mv src/${{ matrix.package }}/README.md template-readme-directory/${{ matrix.package }}_README | |
mv src/${{ matrix.package }}/template.* template-readme-directory/${{ matrix.package }}_template.yaml | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Upload template-readme-directory | |
uses: actions/upload-artifact@v2 | |
with: | |
name: template-readme-directory | |
path: ./template-readme-directory/ | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Download change_file_list | |
uses: actions/download-artifact@v3 | |
with: | |
name: change_file_list | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Add integration to change_file_list | |
run: echo "${{ matrix.package }}" >> change_file_list.txt | |
- if: steps.changes.outputs[matrix.package] == 'true' | |
name: Upload change_file_list | |
uses: actions/upload-artifact@v2 | |
with: | |
name: change_file_list | |
path: change_file_list.txt | |
Push-changes: | |
needs: Apply-changes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout destination repository | |
uses: actions/checkout@v2 | |
with: | |
repository: coralogix/cloudformation-coralogix-aws | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Create template-readme-directory | |
run: mkdir ./template-readme-directory | |
- name: Download template-readme-directory | |
uses: actions/download-artifact@v3 | |
with: | |
name: template-readme-directory | |
path: ./template-readme-directory | |
- name: Download change_file_list | |
uses: actions/download-artifact@v3 | |
with: | |
name: change_file_list | |
- name: Commit and push chage files | |
run: | | |
while IFS= read -r line; do | |
if [[ -d "aws-integrations/lambda-integrations/$line" ]]; then | |
mv template-readme-directory/${line}_README aws-integrations/lambda-integrations/$line/README.md | |
mv template-readme-directory/${line}_template.yaml aws-integrations/lambda-integrations/$line/template.yaml | |
else | |
mkdir aws-integrations/lambda-integrations/$line/ | |
mv template-readme-directory/${line}_README aws-integrations/lambda-integrations/$line/README.md | |
mv template-readme-directory/${line}_template.yaml aws-integrations/lambda-integrations/$line/template.yaml | |
fi | |
done < "change_file_list.txt" | |
rm change_file_list.txt | |
rm -rf template-readme-directory | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git checkout master | |
git pull | |
git add . | |
git commit -m "${{ github.event.pull_request.title }}#${{ github.event.pull_request.head.ref }}" | |
git push origin HEAD:master -f |