Skip to content

Commit

Permalink
Merge pull request #3 from nchiasson-dgi/fix/add-semver-workflow
Browse files Browse the repository at this point in the history
Adding auto-semver workflow
  • Loading branch information
nchiasson-dgi authored Aug 3, 2022
2 parents ae8ae18 + 4e7df0e commit 116e342
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/auto-semver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Auto Semver
on:
pull_request_target:
types: closed
branches:
- main
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

0 comments on commit 116e342

Please sign in to comment.