Skip to content

Commit

Permalink
Merge pull request #1779 from camptocamp/fix-changelog
Browse files Browse the repository at this point in the history
Fix the release creation in the changelog workflow
  • Loading branch information
sbrunner authored Mar 21, 2023
2 parents d0e8441 + 4b6f956 commit 47d0ac8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Changelog Generator

on:
schedule:
- cron: '0 0 * * 1,4'
- cron: 0 0 * * 1,4
push:
tags:
- '*.*.*'
Expand All @@ -23,7 +23,7 @@ jobs:
fi
if: github.event_name == 'push' && github.ref_type == 'tag'
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }}

- name: Get Date
id: get-date
Expand Down
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
hooks:
- id: prettier
additional_dependencies:
- prettier@2.8.4

0 comments on commit 47d0ac8

Please sign in to comment.