Skip to content

disable build and push workflow #9

disable build and push workflow

disable build and push workflow #9

Workflow file for this run

name: Renovate
on:
schedule:
- cron: "0 * * * *"
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Get token
id: get_token
uses: actions/create-github-app-token@v1
with:
private-key: ${{ secrets.private_key }}
app-id: ${{ secrets.app_id }}
owner: ${{ github.repository_owner }}
repositories: 'wordpress'
- name: Checkout
uses: actions/[email protected]
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
configurationFile: .github/renovate-configs.json5
token: '${{ steps.get_token.outputs.token }}'