Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Renovate

on:
workflow_dispatch:
schedule:
- cron: "0 3 1,15 * *"

concurrency:
group: renovate
cancel-in-progress: false

permissions: {}

jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Get GitHub App token
id: app_token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ vars.RENOVATE_APP_ID }}
Comment on lines +18 to +22
private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: |
${{ github.event.repository.name }}
android-renovate-config

- name: Run Renovate
uses: renovatebot/github-action@eaf12548c13069dcc28bb75c4ee4610cdbe400c5 # v44.2.6
with:
token: ${{ steps.app_token.outputs.token }}
env:
RENOVATE_REPOSITORIES: ${{ github.repository }}
10 changes: 10 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>infinum/android-renovate-config"
],
"reviewers": [
"thisAAY",
"andronicus-kim"
]
Comment on lines +5 to +9
}
Loading