Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update root changelog #2

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/liquibase_pro_cd_trigger_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#####################################################################
# Trigger the continuous deployment (CD) of database
# changes using Liquibase Pro, Liquibase Pro Flows, and Custom
# Policy checks on another repository.
#####################################################################
name: 'Trigger the Liquibase Pro CD Workflow'
run-name: Continuous Deployment of ${{github.ref}} by ${{ github.actor }}

# This workflow will execute whenever a 'push' event occurs on the
# 'develop' branch. A push event can occur due to several events,
# including merging a PR or bypassing rules and pushing directly to
# the branch as a repository administrator. When this workflow
# executes, it will deploy all pending changes, including any which
# have been previously rolled back. Since the GitHub Actions and
# Azure Pipelines files are housed in the same repository, we safely
# ignore any changes to the Azure workflows.
#
# To extend CD to other environments, add their corresponding
# branches here.
on:
push:
branches:
- 'develop'
paths-ignore:
- '.azure_pipelines/**'

jobs:
trigger-event:
runs-on: ubuntu-latest
steps:
- name: Fire event
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GHA_TRIGGER_PAT }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/liquibase/cs-impl-guide-examples/actions/workflows/azure_liquibase_pro_cd_action.yml/dispatches \
-d '{"event_type":"dispatch-event"}'
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GHA_TRIGGER_PAT }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/liquibase/cs-impl-guide-examples/dispatches \
https://api.github.com/repos/liquibase/cs-impl-guide-examples/actions/workflows/azure_liquibase_pro_ci_action.yml/dispatches \
-d '{"event_type":"dispatch-event"}'

40 changes: 20 additions & 20 deletions sqlcode_by_releases_schema/rootchangelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ databaseChangeLog:
- include:
file: 1.0/changelog.yaml
relativeToChangelogFile: true

- include:
file: 1.1/changelog.yaml
relativeToChangelogFile: true

- include:
file: 2.0/changelog.yaml
relativeToChangelogFile: true

- include:
file: 2.1/changelog.yaml
relativeToChangelogFile: true

- include:
file: 2.2/changelog.yaml
relativeToChangelogFile: true

- include:
file: 3.0/changelog.yaml
relativeToChangelogFile: true
#
#- include:
# file: 1.1/changelog.yaml
# relativeToChangelogFile: true
#
#- include:
# file: 2.0/changelog.yaml
# relativeToChangelogFile: true
#
#- include:
# file: 2.1/changelog.yaml
# relativeToChangelogFile: true
#
#- include:
# file: 2.2/changelog.yaml
# relativeToChangelogFile: true
#
#- include:
# file: 3.0/changelog.yaml
# relativeToChangelogFile: true
Loading