Skip to content

Commit

Permalink
✨ (dry-run-release.yml): add a new workflow for dry run release to tr…
Browse files Browse the repository at this point in the history
…igger on demand and weekly on Wednesdays at midnight UTC. The workflow uses liquibase/build-logic extension for nightly build jobs.
  • Loading branch information
Alejandro Alvarez committed Sep 3, 2024
1 parent bc2bc09 commit a65469f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/dry-run-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Dry run release

on:
workflow_dispatch: # Trigger on demand
schedule: # Trigger weekly all Wednesdays at midnight UTC
# Trigger weekly on Wednesday at midnight Austin time (Standard Time)
- cron: "0 6 * * 3"

jobs:
nightly-build:
uses: liquibase/build-logic/.github/workflows/extension-dry-run.yml@DAT-18303
secrets: inherit

0 comments on commit a65469f

Please sign in to comment.