Skip to content

chore(config): migrate renovate config (#67) #287

chore(config): migrate renovate config (#67)

chore(config): migrate renovate config (#67) #287

Workflow file for this run

name: Renovate
on:
pull_request:
push:
branches:
- main
schedule:
- cron: "0 11 * * *" # 3 AM PST = 11 AM UDT
workflow_dispatch:
env:
config: renovate.json
jobs:
renovate:
runs-on: ubuntu-22.04
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v3
# PRs should always use dry run
- name: Set dry run and repo list
if: github.event_name == 'pull_request'
env:
repos: '["bcgov/nr-renovate", "bcgov/quickstart-openshift"]'
run: |
cat <<< $(jq '.+= {"dryRun": "full"}' ${{ env.config }}) > ${{ env.config }}
cat <<< $(jq '. | .repositories = ${{ env.repos }}' ${{ env.config }}) > ${{ env.config }}
cat ${{ env.config }} | jq .repositories
- name: Self-hosted Renovate
uses: renovatebot/github-action@v39.0.1
with:
configurationFile: ${{ env.config }}
token: ${{ secrets.RENOVATE_TOKEN }}