Community health files for the @manytask organization.
Also, organization profile README.md is available.
.github/workflows
directory contains GitHub Actions workflows that can be re-used in multiple repositories.
The following reusable workflows are available:
reusable-validate-pr.yml
- checks pull request title for compliance with conventional commits format and PR labels.reusable-update-changelog-version.yml
- updatesCHANGELOG.md
andVERSION
files on release (move exising tag).
This folder contains only on: workflow_call:
jobs, so nothing will be executed automatically.
To use a workflow from this folder, you need to call it from another workflow in your repository.
jobs:
call-workflow-passing-data:
uses: manytask/.github/.github/workflows/reusable-workflow.yml@main
with:
config-path: .github/labeler.yml
secrets:
envPAT: ${{ secrets.envPAT }}
permissions:
contents: read
.github
directory contains GitHub Actions configurations that can be re-used in multiple repositories.
release-drafter.yml
- config for release-drafter GitHub Action.
You need to create .github/release-drafter.yml
file in your repository to use this config.
_extends: manytask/.github:.github/release-drafter.yml