renovate-config/.forgejo/workflows/renovate.yaml

47 lines
1.5 KiB
YAML
Raw Normal View History

2024-05-15 08:59:54 -05:00
on:
schedule:
- cron: '*/30 * * * *'
2024-07-26 20:53:52 -05:00
push:
branches: ["main"]
paths: [".forgejo/workflows/renovate.yaml"]
workflow_dispatch:
inputs:
dryRun:
2024-10-11 09:49:51 -05:00
default: false
description: Dry Run
required: false
2024-10-11 09:49:51 -05:00
type: boolean
env:
RENOVATE_DRY_RUN: "${{ inputs.dryRun == true }}"
2024-05-15 08:59:54 -05:00
jobs:
renovate:
name: Renovate
2024-05-20 09:16:29 -05:00
runs-on: docker
2024-05-15 08:59:54 -05:00
container:
image: ghcr.io/renovatebot/renovate:38.120.1@sha256:ebf0c727f1a6f41d19dafccfc78107439223727bdedb3b00d06c28cb9397ac15
2024-05-15 08:59:54 -05:00
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
2024-05-15 08:59:54 -05:00
with:
show-progress: false
2024-07-29 21:42:01 -05:00
- name: setup .ssh directory
run: mkdir -p /home/ubuntu/.ssh && chmod 700 /home/ubuntu/.ssh
2024-07-26 20:49:47 -05:00
- name: Write ssh key
id: sshkey
2024-08-01 04:02:29 -05:00
uses: https://github.com/timheuer/base64-to-file@adaa40c0c581f276132199d4cf60afa07ce60eac # v1
# uses: timheuer/base64-to-file@adaa40c0c581f276132199d4cf60afa07ce60eac # v1
2024-07-26 20:49:47 -05:00
with:
encodedString: "${{ secrets.SSH_USER }}"
fileName: id_ed25519
2024-07-29 21:42:01 -05:00
fileDir: /home/ubuntu/.ssh
- name: chmod id_ed25519
run: chmod 600 /home/ubuntu/.ssh/id_ed25519
2024-05-15 08:59:54 -05:00
- name: Renovate
uses: ./.forgejo/actions/renovate
with:
endpoint: https://git.hsn.dev/api/v1/
token: ${{ secrets.RENOVATE_TOKEN }}
github-token: ${{ secrets.GH_TOKEN }}
args: --platform gitea --autodiscover
save-cache: true