Skip to content

Commit

Permalink
Adding a test'ish workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
metcalfc committed Mar 28, 2020
1 parent 1eb4106 commit ce1fd88
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on: [push]

jobs:
test:
runs-on: ubuntu-latest
name: Testing
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v2
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@master
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
head-ref: "v0.0.2"
base-ref: "v0.0.1"
- name: Get the changelog
run: echo "${{ steps.changelog.outputs.changelog }}"
- name: Generate changelog from release
id: release
uses: metcalfc/changelog-generator@master
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Get the changelog
run: echo "${{ steps.release.outputs.changelog }}"

0 comments on commit ce1fd88

Please sign in to comment.