mirror of
https://github.com/hikhvar/mqtt2prometheus.git
synced 2026-02-14 09:59:52 +00:00
26 lines
723 B
YAML
26 lines
723 B
YAML
name: Renovate
|
|
on:
|
|
schedule:
|
|
# The "*" (#42, asterisk) character has special semantics in YAML, so this
|
|
# string has to be quoted.
|
|
- cron: '24 * * * *'
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get token
|
|
id: get_token
|
|
uses: machine-learning-apps/actions-app-token@master
|
|
with:
|
|
APP_PEM: ${{ secrets.APP_PEM }}
|
|
APP_ID: ${{ secrets.APP_ID }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.0.0
|
|
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@v32.118.0
|
|
with:
|
|
configurationFile: .github/renovate.js
|
|
token: 'x-access-token:${{ steps.get_token.outputs.app_token }}'
|