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

46 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:
# description: Dry Run
# default: "false"
# required: false
2024-07-03 01:11:39 -05:00
# 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.86.0@sha256:59809186ba4c2d503df8c3ce9ab1f6c410235693ec19550cd8002f4607215a95
2024-05-15 08:59:54 -05:00
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 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