1
0
mirror of https://github.com/flarum/core.git synced 2025-07-26 03:01:22 +02:00

chore: getting the release workflow in

This commit is contained in:
Daniël Klabbers
2022-07-30 23:33:55 +02:00
parent e7af009fbc
commit 5530400b09

27
.github/workflows/prepare-release.yml vendored Normal file
View 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 }}