mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
7ee8f65889
* Delete microserivce template. * Remove dependabot config * Prepare renovate by adopting GitHub actions syntax Signed-off-by: Fabian Kammel <fk@edgeless.systems>
21 lines
634 B
YAML
21 lines
634 B
YAML
name: Create Pull Request for CLI reference update
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- action/constellation/update-cli-reference
|
|
|
|
jobs:
|
|
pull-request:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
|
- name: pull-request
|
|
uses: repo-sync/pull-request@65785d95a5a466e46a9d0708933a3bd51bbf9dde # tag=v2.6.2
|
|
with:
|
|
destination_branch: "main"
|
|
pr_title: "Update CLI reference"
|
|
pr_body: |
|
|
:robot: *This is an automated PR.* :robot:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|