Skip to content

Commit

Permalink
Merge pull request #64 from snakemake-workflows/add-release-please-an…
Browse files Browse the repository at this point in the history
…d-conventional-commits

feat: add release-please and use conventional commits
  • Loading branch information
dlaehnemann authored Apr 17, 2023
2 parents 32252c4 + a49111d commit 896007e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/conventional-prs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Lint PR for conventional commits: https://www.conventionalcommits.org"

on:
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15 changes: 15 additions & 0 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "release-please, see: https://github.com/marketplace/actions/release-please-action"

on:
push:
branches:
- main

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: simple
token: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4737358.svg)](https://doi.org/10.5281/zenodo.4737358)
[![Snakemake](https://img.shields.io/badge/snakemake-≥6.1.0-brightgreen.svg)](https://snakemake.github.io)
[![GitHub actions status](https://github.com/snakemake-workflows/rna-seq-star-deseq2/workflows/Tests/badge.svg?branch=master)](https://github.com/snakemake-workflows/rna-seq-star-deseq2/actions?query=branch%3Amaster+workflow%3ATests)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)

This workflow performs a differential gene expression analysis with STAR and Deseq2.

Expand Down

0 comments on commit 896007e

Please sign in to comment.