Skip to content

Commit

Permalink
chore: Add release workflow (#16)
Browse files Browse the repository at this point in the history
This sets up the release-please action in the github workflow which will
run after every new commit on master. It will create a new PR on master
that when merged will cut a new release with generated changelog.

Commit titles on master must follow conventional commit convention for
correct changelog generation.
  • Loading branch information
jeremytchang authored Apr 15, 2024
1 parent 8d19670 commit 216678b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: release

on:
workflow_dispatch:
push:
branches:
- master

# Cancels an release workflows in progress
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
release:
permissions:
contents: write
pull-requests: write
uses: looker-open-source/reusable-actions/.github/workflows/marketplace-block-release.yml@main
secrets: inherit

0 comments on commit 216678b

Please sign in to comment.