You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
659 B
26 lines
659 B
3 years ago
|
name: Auto Semver
|
||
|
on:
|
||
|
pull_request_target:
|
||
|
types: closed
|
||
|
branches:
|
||
|
- 1.x
|
||
|
jobs:
|
||
|
update:
|
||
|
if: github.event.pull_request.merged == true
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout Repo
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Checkout Auto Semver Action Repo
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
repository: discoverygarden/auto-semver
|
||
|
ref: v1
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
path: .github/actions/auto-semver
|
||
|
- name: Run Auto Semver
|
||
|
uses: ./.github/actions/auto-semver
|
||
|
with:
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
prefix: v
|