Skip to content

Nightly Pipeline

Nightly Pipeline #284

name: Nightly Pipeline
on:
workflow_dispatch:
inputs:
dryrun:
type: boolean
default: false
schedule:
- cron: '0 4 * * *'
jobs:
PackageUpdate:
name: Nightly Package Update
uses: 51Degrees/common-ci/.github/workflows/nightly-package-update.yml@main
with:
repo-name: ${{ github.event.repository.name }}
org-name: ${{ github.event.repository.owner.login }}
dryrun: ${{ inputs.dryrun || false }}
secrets:
token: ${{ secrets.ACCESS_TOKEN }}
SubmoduleUpdate:
name: Nightly Submodule Update
uses: 51Degrees/common-ci/.github/workflows/nightly-submodule-update.yml@main
with:
repo-name: ${{ github.event.repository.name }}
org-name: ${{ github.event.repository.owner.login }}
dryrun: ${{ inputs.dryrun || false }}
secrets:
token: ${{ secrets.ACCESS_TOKEN }}
PullRequests:
if: ${{ !cancelled() }}
needs: [PackageUpdate, SubmoduleUpdate]
name: Nightly Pull Requests
uses: 51Degrees/common-ci/.github/workflows/nightly-pull-requests.yml@main
with:
repo-name: ${{ github.event.repository.name }}
org-name: ${{ github.event.repository.owner.login }}
dryrun: ${{ inputs.dryrun || false }}
cache-assets: true
secrets:
token: ${{ secrets.ACCESS_TOKEN }}
IpIntelligence: ${{ secrets.DEVICE_DETECTION_KEY }}
TestResourceKey: ${{ secrets.SUPER_RESOURCE_KEY}}
IpIntelligenceUrl: ${{ secrets.IPI_DATA_FILE_URL }}