This commit is contained in:
Earl Warren 2023-10-11 15:39:52 +02:00
parent c1016ee0f2
commit 7d02d44019
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
5 changed files with 223 additions and 51 deletions

24
action.yml Normal file
View file

@ -0,0 +1,24 @@
# SPDX-License-Identifier: MIT
name: 'Cascading PR'
author: 'Forgejo authors'
description: |
Create and update a PR in another repository
inputs:
forgejo:
description: 'URL of the Forgejo instance where the PR is created (e.g. https://code.forgejo.org)'
required: true
repo:
description: 'the repository into which the PR is created'
required: true
token:
description: 'a token with write permission on repo'
required: true
runs:
using: "composite"
steps:
- uses: actions/checkout@v4
- run: |
echo
shell: bash