diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 0000000..8daf7a2 --- /dev/null +++ b/.github/workflows/nightly.yml @@ -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 diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml new file mode 100644 index 0000000..b836328 --- /dev/null +++ b/.github/workflows/prepare-release.yml @@ -0,0 +1,8 @@ +name: Nightly Build + +on: workflow_dispatch + +jobs: + call-nightly-workflow: + uses: lacework/oss-actions/.github/workflows/tf-prepare-release.yml@main + secrets: inherit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..19d276e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,8 @@ +name: Nightly Build + +on: workflow_dispatch + +jobs: + call-nightly-workflow: + uses: lacework/oss-actions/.github/workflows/tf-release.yml@main + secrets: inherit diff --git a/.github/workflows/test-compatibility.yml b/.github/workflows/test-compatibility.yml new file mode 100644 index 0000000..3048cc4 --- /dev/null +++ b/.github/workflows/test-compatibility.yml @@ -0,0 +1,8 @@ +name: Nightly Build + +on: workflow_dispatch + +jobs: + call-nightly-workflow: + uses: lacework/oss-actions/.github/workflows/tf-test-compatibility.yml@main + secrets: inherit diff --git a/.github/workflows/verify-release.yml b/.github/workflows/verify-release.yml new file mode 100644 index 0000000..1717005 --- /dev/null +++ b/.github/workflows/verify-release.yml @@ -0,0 +1,8 @@ +name: Nightly Build + +on: workflow_dispatch + +jobs: + call-nightly-workflow: + uses: lacework/oss-actions/.github/workflows/tf-verify.yml@main + secrets: inherit