Skip to content

Commit

Permalink
Meta: automatically add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante authored Sep 23, 2020
1 parent a504227 commit 5735aa0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
# You can manually trigger a deployment on GitHub.com
# https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/
schedule:
- cron: '31 13 * * 6'
- cron: '31 19 * * 6'

jobs:
Build:
Expand All @@ -15,11 +15,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 20
- run: npm ci
- run: npm test # This includes the build
- uses: fregante/daily-version-action@v1
name: Create tag if necessary
id: daily-version
- uses: notlmn/release-with-changelog@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
template: '{commits}'
exclude: '^Meta|^Document|^Readme|^Lint|dependencies$'
- name: Update extension’s meta
env:
VER: ${{ steps.daily-version.outputs.version }}
Expand Down

0 comments on commit 5735aa0

Please sign in to comment.