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

Updated Linux YAML to contain auto-trigger on PRs #30

Merged
merged 7 commits into from
Jan 27, 2025
Merged
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
10 changes: 4 additions & 6 deletions .github/workflows/GitHub-Flyway-CICD-Pipeline_Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
name: GitHub-Flyway-AutoPilot-Pipeline-Linux

on:
# Triggers the workflow on push or pull request events but only for the "release" branch
#push:
#branches:
#- release
#- 'migrations/**'
pull_request:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -36,7 +34,7 @@ env:
FIRST_UNDO_SCRIPT: "002" # This should match the first undo version in your project

# Optional - Validate Flyway CLI installation for ephemeral agents
FLYWAY_CLI_INSTALL_CHECK: "false" # Setting to false will skip the Flyway CLI check step
FLYWAY_CLI_INSTALL_CHECK: "${{ secrets.FLYWAY_CLI_INSTALL_CHECK }}" # Setting to false will skip the Flyway CLI check step
FLYWAY_VERSION: "Latest" # This outlines the version of Flyway CLI that will be downloaded if no Flyway CLI is detected on the target agent (Examples - '11.0.0' for specific version. Or 'Latest' for latest version)
FLYWAY_INSTALL_DIRECTORY: "" # The path on the agent machine where Flyway CLI will be installed

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/GitHub-Flyway-CICD-Pipeline_Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
FIRST_UNDO_SCRIPT: "002" # This should match the first undo version in your project

# Optional: Validate Flyway CLI installation for ephemeral agents.
FLYWAY_CLI_INSTALL_CHECK: "false" # Setting to false will skip the Flyway CLI check step
FLYWAY_CLI_INSTALL_CHECK: "${{ secrets.FLYWAY_CLI_INSTALL_CHECK }}" # Setting to false will skip the Flyway CLI check step
FLYWAY_VERSION: "Latest" # This outlines the version of Flyway CLI that will be downloaded if no Flyway CLI is detected on the target agent (Examples - '11.0.0' for specific version. Or 'Latest' for latest version)
FLYWAY_INSTALL_DIRECTORY: "C:\\FlywayCLI\\" # The path on the agent machine where Flyway CLI will be installed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flyway AutoPilot allows you to trial an end-to-end database development and automated deployment process with next to no setup. With Flyway AutoPilot, you get:
Redgate Flyway Autopilot allows you to trial an end-to-end database development and automated deployment process with next to no setup. With Flyway Autopilot, you get:

1. A SQL script to create ready-to-use sample databases, with the ability to test additional objects and scenarios
2. A pre-configured Flyway project to get started quickly
Expand Down
Loading