Skip to content

Commit

Permalink
Merge branch 'release/7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Oct 31, 2023
2 parents 7cb53ea + 472b374 commit 9eba4fe
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ on:
- '**.md'
- '_config.yml'
- '**.tweet'
# Scheduled workflows run on the latest commit on the default or base branch.
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
# Cron syntax has five fields separated by a space, and each field represents a unit of time.
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
schedule:
# Schedule at 00:00 on Tuesday, Thursday, and Saturday, https://crontab.guru/#0_0_*_*_2,4,6
- cron: '0 0 * * 2,4,6'

jobs:
static-code-analysis:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [7.1](https://github.com/johnnymillergh/python_boilerplate/compare/7.0...7.1) (2023-10-31)


### Building Improvements

* **GitHub:** schedule GitHub Actions at specific UTC times ([9941811](https://github.com/johnnymillergh/python_boilerplate/commit/9941811daabdac5feac9edb787d073ae2ceb79c4))



# [7.0](https://github.com/johnnymillergh/python_boilerplate/compare/6.0.3...7.0) (2023-10-28)


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = python_boilerplate
version = 7.0
version = 7.1
description = A boilerplate project for Python.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit 9eba4fe

Please sign in to comment.