Summary | Badge |
---|---|
Release Stability | |
Latest Release | |
Code Quality | |
Code Coverage |
GitHub Action that creates appropriate GitHub Milestones automatically when run.
This means creating a patch version, backwards-compatible version, and backwards-incompatible/major version at all
times to the current latest version of your project based on your latest valid SemVer git
tag. v
-prefixes are
allowed!
Though the example below uses
master
, you should use the explicit version suitable for your project.
Add this to your main.yml
file (or whatever your workflow is called).
name: my-workflow
on: [push]
jobs:
autocommit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: autosuite/automilestone@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-repository: ${{ github.repository }}
You can see all configuration in the action.yml file.
Variable | Value | Example | Default | Required? |
---|---|---|---|---|
github-token | Your GitHub token. | ${{ secrets.GITHUB_TOKEN }} | ${{ secrets.GITHUB_TOKEN }} | Yes. |
github-repository | Your repository. | ${{ github.repository }} | ${{ github.repository }} | Yes. |
If you would like to contribute to this project, please read our contributors documentation and our code of conduct.
The license we use for this project is defined in the license file.