-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
562 additions
and
331 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: GitHub Actions Version Updater | ||
|
||
on: | ||
schedule: | ||
# 12:00 AM on the first of every month | ||
- cron: '0 0 1 * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
with: | ||
# This requires a personal access token with the privileges to push directly to `main` | ||
token: ${{ secrets.WORKFLOW_TOKEN }} | ||
persist-credentials: true | ||
- name: Run GitHub Actions Version Updater | ||
uses: saadmk11/github-actions-version-updater@v0.8.1 | ||
with: | ||
token: ${{ secrets.WORKFLOW_TOKEN }} | ||
committer_email: 'bumpversion[bot]@ouranos.ca' | ||
committer_username: 'update-github-actions[bot]' | ||
pull_request_title: '[bot] Update GitHub Action Versions' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: "Bump Patch Version" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- .cruft.json | ||
- .editorconfig | ||
- .github/**.yml | ||
- .gitignore | ||
- .pre-commit-config.yaml | ||
- .yamllint.yaml | ||
- .zenodo.json | ||
- AUTHORS.rst | ||
- CONTRIBUTING.rst | ||
- CHANGES.rst | ||
- Makefile | ||
- .readthedocs.yml | ||
- docs/*.py | ||
- docs/*.rst | ||
- environment-docs.yml | ||
- environment-dev.yml | ||
- setup.cfg | ||
- pyproject.toml | ||
- tests/**.py | ||
- tox.ini | ||
- figanos/__init__.py | ||
workflow_dispatch: | ||
|
||
jobs: | ||
bump_patch_version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.x" | ||
- name: Config Commit Bot | ||
run: | | ||
git config --local user.email "bumpversion[bot]@ouranos.ca" | ||
git config --local user.name "bumpversion[bot]" | ||
- name: Current Version | ||
run: echo "current_version=$(grep -E '__version__' figanos/__init__.py | cut -d ' ' -f3)" | ||
- name: Bump Patch Version | ||
run: | | ||
pip install bump2version | ||
echo "Bumping version" | ||
bump2version patch | ||
echo "new_version=$(grep -E '__version__' figanos/__init__.py | cut -d ' ' -f3)" | ||
- name: Push Changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
force: false | ||
github_token: ${{ secrets.WORKFLOW_TOKEN }} | ||
branch: ${{ github.ref }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.