mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 18:42:58 +00:00
| datasource | package | from | to | | ----------- | ------------------------------- | ------ | ------ | | github-tags | actions/create-github-app-token | v2.0.3 | v2.0.6 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
28 lines
796 B
YAML
28 lines
796 B
YAML
name: Release Please
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
release-please:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Generate Short Lived OAuth App Token
|
|
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
|
|
id: app-token
|
|
with:
|
|
app-id: "${{ secrets.BOT_APP_ID }}"
|
|
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
owner: "${{ github.repository_owner }}"
|
|
repositories: "${{ github.event.repository.name }}"
|
|
|
|
- name: Create / Update Release PR
|
|
uses: googleapis/release-please-action@a02a34c4d625f9be7cb89156071d8567266a2445 # v4.2.0
|
|
with:
|
|
token: "${{ steps.app-token.outputs.token }}"
|