Skip to content

Nightly Pipeline

Nightly Pipeline #53

name: Nightly Pipeline
on:
workflow_dispatch:
inputs:
dryrun:
type: boolean
default: false
schedule:
- cron: '5 0 * * *'
jobs:
PullRequests:
name: Nightly Pull Requests
uses: postindustria-tech/common-ci/.github/workflows/nightly-pull-requests.yml@nightly-pipeline
with:
common-ci-ref: nightly-pipeline
repo-name: ${{ github.event.repository.name }}
org-name: ${{ github.event.repository.owner.login }}
dryrun: ${{ inputs.dryrun || false }}
secrets:
token: ${{ secrets.ACCESS_TOKEN }}
Publish:
if: ${{ !cancelled() }}
needs: PullRequests
name: Nightly Publish
uses: postindustria-tech/common-ci/.github/workflows/nightly-publish.yml@nightly-pipeline
with:
common-ci-ref: nightly-pipeline
repo-name: ${{ github.event.repository.name }}
org-name: ${{ github.event.repository.owner.login }}
dryrun: ${{ inputs.dryrun || false }}
secrets:
token: ${{ secrets.ACCESS_TOKEN }}