Skip to content

Commit

Permalink
Deployment Automation (#865)
Browse files Browse the repository at this point in the history
This pull request includes updates to the GitHub workflows to automate
version bumping and release drafting. The most important changes include
adding a push trigger for the version bump workflow and scheduling the
draft release workflow to run weekly.

Updates to GitHub workflows:

*
[`.github/workflows/bump_version.yml`](diffhunk://#diff-53150b4763f4a2e08b0d85622cd0640ba3b10eb7a9bca1cfec2b7fb5111b00feR3-R5):
Added a push trigger for the `main` branch to automate version bumping.
*
[`.github/workflows/draft_release.yml`](diffhunk://#diff-cf9ff1c5bc30168737462f98fc8932addf46407f697d9914bd8e57ffb61da05eR3-R4):
Scheduled the draft release workflow to run every Monday at 10 AM (UTC,
Open Question, should we make it to run on a different time? Or more
regularly?).
  • Loading branch information
remedcu authored Nov 7, 2024
1 parent cee2b4e commit 18430ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Bump Version
on:
push:
branches:
- main
workflow_dispatch:

permissions:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Draft Release
on:
schedule:
- cron: '0 10 * * 1' # Every Monday at 10:00 UTC
workflow_dispatch:

permissions:
Expand Down

0 comments on commit 18430ea

Please sign in to comment.