Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

Comment thread
tacaswell marked this conversation as resolved.
Outdated
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of your workflow files
schedule:
interval: "weekly" # Options: daily, weekly, monthly
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we monthly? The repo isn't super active and I have so many bot PRs to review these days. 😅

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll change it to monthly, although if your actions don't change much faster than that it does not super matter.

I'm not super worried about what the cadence is, but I would like there to be some process to make sure that the actions are kept up to date.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For sure, definitely want the update.

2 changes: 2 additions & 0 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: CI
permissions:
contents: read

on:
push:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/update-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# the git repo of the changes.

name: "Update Changelog"
permissions:
contents: read
Comment thread
tacaswell marked this conversation as resolved.
Outdated

on:
release:
Expand All @@ -17,16 +19,17 @@ jobs:
uses: actions/checkout@v2
with:
ref: main
persist-credentials: false
Comment thread
dopplershift marked this conversation as resolved.
Outdated

- name: Update Changelog
uses: stefanzweifel/changelog-updater-action@v1
uses: stefanzweifel/changelog-updater-action@a938690fad7edf25368f37e43a1ed1b34303eb36 # v1
with:
release-notes: ${{ github.event.release.body }}
latest-version: ${{ github.event.release.name }}
path-to-changelog: CHANGES.md

- name: Commit updated CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a # v4
with:
branch: main
commit_message: Update CHANGELOG
Expand Down
Loading