mirror of
https://github.com/flarum/core.git
synced 2025-07-28 12:10:51 +02:00
chore: getting the release workflow in
This commit is contained in:
27
.github/workflows/prepare-release.yml
vendored
Normal file
27
.github/workflows/prepare-release.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
name: Akismet PHP
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: 'Version to release'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
branch:
|
||||||
|
description: 'Branch of which to base release (default main)'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
run:
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Prepare release
|
||||||
|
permissions:
|
||||||
|
issues: read
|
||||||
|
pull-requests: read|write
|
||||||
|
uses: flarum/action-release@master
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
OPEN_COLLECTIVE_TOKEN: ${{ secrets.OPEN_COLLECTIVE_TOKEN }}
|
Reference in New Issue
Block a user