Skip to content

Commit

Permalink
Merge branch 'master' into bbusa/add_names_to_run_script
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Jun 13, 2024
2 parents bf37ce8 + 943635d commit 6bc1609
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/conventional-pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Check PR title for conventional commits
name: Check PR title
on:
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize

# cancel redundant builds
concurrency:
group: "title-checker-${{ github.head_ref }}"
cancel-in-progress: true

jobs:
title_check:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13 changes: 8 additions & 5 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
on:
push:
branches: [main]
branches:
- master

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
name: "Release please"
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
- uses: googleapis/release-please-action@v4
with:
release-type: simple
package-name: kurtosis
include-v-in-tag: false

0 comments on commit 6bc1609

Please sign in to comment.