Skip to content

Commit

Permalink
ci: add workflows for testing codefresh migration (#17)
Browse files Browse the repository at this point in the history
* ci: add workflows for testing codefresh migration

Signed-off-by: Timothy MacDonald <tim.macdonald@lacework.net>

* ci: update workflow names

Signed-off-by: Timothy MacDonald <tim.macdonald@lacework.net>

---------

Signed-off-by: Timothy MacDonald <tim.macdonald@lacework.net>
  • Loading branch information
tmac1973 authored Mar 7, 2024
1 parent 0928ab9 commit 11c76de
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Nightly Build

on: workflow_dispatch

# schedule:
# - cron: '0 10 * * *' # Run every day at 10AM UTC

jobs:
call-nightly-workflow:
uses: lacework/oss-actions/.github/workflows/tf-nightly.yml@main
secrets: inherit
8 changes: 8 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Prepare Release

on: workflow_dispatch

jobs:
call-nightly-workflow:
uses: lacework/oss-actions/.github/workflows/tf-prepare-release.yml@main
secrets: inherit
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Release

on: workflow_dispatch

jobs:
call-nightly-workflow:
uses: lacework/oss-actions/.github/workflows/tf-release.yml@main
secrets: inherit
8 changes: 8 additions & 0 deletions .github/workflows/test-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Test Compatibility

on: workflow_dispatch

jobs:
call-nightly-workflow:
uses: lacework/oss-actions/.github/workflows/tf-test-compatibility.yml@main
secrets: inherit
8 changes: 8 additions & 0 deletions .github/workflows/verify-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Verify Release

on: workflow_dispatch

jobs:
call-nightly-workflow:
uses: lacework/oss-actions/.github/workflows/tf-verify.yml@main
secrets: inherit

0 comments on commit 11c76de

Please sign in to comment.