2022-09-22 12:04:38 +00:00
|
|
|
name: Sync multiple branches
|
2022-09-22 12:07:38 +00:00
|
|
|
|
|
|
|
concurrency: catalog-test
|
|
|
|
|
2022-09-22 12:04:38 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'staging'
|
|
|
|
workflow_dispatch:
|
2022-11-24 09:27:59 +00:00
|
|
|
|
2022-09-22 12:04:38 +00:00
|
|
|
jobs:
|
|
|
|
test-and-sync:
|
|
|
|
name: Test and Sync SCALE Catalog
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2022-11-24 09:51:24 +00:00
|
|
|
image: ghcr.io/truecharts/devcontainer:v3.1.1@sha256:b682ca20989c13c4afc8edf0660f83ce8e896e32db21d6321ba06f135911fc81
|
2022-09-22 12:04:38 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
|
|
|
|
name: Checkout
|
|
|
|
|
|
|
|
- name: catalog tests
|
|
|
|
run: |
|
|
|
|
echo "Starting Catalog Validation"
|
2022-09-22 12:14:35 +00:00
|
|
|
/usr/local/bin/catalog_validate validate --path "${PWD}"
|
2022-11-24 09:27:59 +00:00
|
|
|
|
|
|
|
- name: catalog json generation
|
|
|
|
run: |
|
|
|
|
echo "Starting Catalog json Generation"
|
2022-11-24 11:51:31 +00:00
|
|
|
/usr/local/bin/catalog_update update --path "${PWD}"
|
2022-11-24 09:27:59 +00:00
|
|
|
|
2022-09-22 12:38:29 +00:00
|
|
|
- name: Merge staging into main
|
2022-09-22 12:34:58 +00:00
|
|
|
run: |
|
|
|
|
git config user.name "TrueCharts-Bot"
|
|
|
|
git config user.email "bot@truecharts.org"
|
2022-11-24 12:16:21 +00:00
|
|
|
git config user.name "TrueCharts-Bot"
|
|
|
|
git config user.email "bot@truecharts.org"
|
|
|
|
# git add catalog.json || echo "Adding catalog.json failed"
|
|
|
|
# git commit -m "Commit catalog.json" || echo "Commiting catalog.json failed"
|
2022-11-24 09:27:59 +00:00
|
|
|
git push -f origin staging:main
|