Skip to content

Commit

Permalink
ci: Release automation
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <[email protected]>
  • Loading branch information
ChristophWurst committed Jan 23, 2024
1 parent 24eb51c commit e8c98f4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release
on:
schedule:
- cron: "42 8 * * 1-5"
workflow_dispatch:

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
fetch-depth: 0
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v4
with:
github-token: ${{ secrets.COMMAND_BOT_PAT }}
skip-git-pull: "true"
output-file: 'false'
skip-version-file: false
skip-commit: true

0 comments on commit e8c98f4

Please sign in to comment.