forked from packit/ogr
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 1021 Bytes
/
prepare-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Prepare a new release
on:
workflow_dispatch:
inputs:
version:
required: true
description: Version number for the new release
jobs:
prepare-release:
# To not run in forks
if: github.repository_owner == 'packit'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Prepare release content
uses: packit/prepare-release@v0
with:
version: ${{ inputs.version }}
specfiles: fedora/python-ogr.spec
env:
GITHUB_TOKEN: ${{ secrets.RELEASEBOT_GITHUB_TOKEN }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
labels: release
token: ${{ secrets.RELEASEBOT_GITHUB_TOKEN }}
commit-message: Release ${{ inputs.version }}
title: Release ${{ inputs.version }}
body: Update the changelog and the specfile for release ${{ inputs.version }}.
delete-branch: true