Skip to content

Auto Releaser

Auto Releaser #8

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Weston Schmidt <[email protected]>
# SPDX-License-Identifier: Apache-2.0
---
name: Auto Releaser
on:
schedule:
- cron: '0 10 * * *'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Get Next Version
id: semver
uses: ietf-tools/semver-action@1c436e1417e5cc6a10b7a165d47b2c4d59200a52 # v1.6.0
with:
token: ${{ github.token }}
branch: main
patchList: fix, bugfix, perf, refactor, test, tests, chore
noVersionBumpBehavior: silent
noNewCommitBehavior: silent
- name: Create Release
uses: ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5 # v1.13.0
with:
name: ${{ steps.semver.outputs.next }}
tag: ${{ steps.semver.outputs.next }}
commit: ${{ github.sha }}
token: ${{ github.token }}