Skip to content

lucaspopp0/workflows

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple reusable Github workflows

Straightforward reusable workflow for semantic versioning!

name: internal-release

on:
  push:
    branches:
      - main

permissions:
  contents: write

jobs:

  tag-and-release:
    uses: lucaspopp0/workflows/.github/workflows/tag-and-release.yml@v1
    with:
      change-filters: |
        app:
          - 'src/**'

Reusable workflow for requiring PR bodies

name: internal-pr-style

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

permissions:
  pull-requests: write

jobs:

  pr-style:
    uses: lucaspopp0/workflows/.github/workflows/pr-style.yml@v1

About

Simple reusable workflows

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors