Skip to content

Commit

Permalink
Merge pull request #77 from dfds/feature/cloudplatform-2505
Browse files Browse the repository at this point in the history
Add workflow for creating releases on merge to primary branch
  • Loading branch information
avnes authored Jan 19, 2024
2 parents 014db0c + 89bdd2e commit 3b1bf09
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Auto release on merge

on:
push:
branches: [master, main]
paths-ignore:
- .github/**
- "**/*.md"
- .gitignore
- .pre-commit-config.yaml
- .tflint.hcl
- LICENSE
- renovate.json
- examples/**
- scripts/**
- test/**

jobs:
auto-release:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: rymndhng/release-on-push-action@master
with:
bump_version_scheme: patch
tag_prefix: ""

0 comments on commit 3b1bf09

Please sign in to comment.