forked from SciTools/iris
-
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.
* main: (64 commits) [pre-commit.ci] pre-commit autoupdate (SciTools#4587) fix test (SciTools#4585) Loading Benchmarks (SciTools#4477) Fix refresh lockfile worrkflow pull request title (SciTools#4579) gha: lockfiles labels and auto-pr details (SciTools#4578) Bump actions/script from 4 to 5.1.0 (SciTools#4576) Bump actions/stale from 4.0.0 to 4.1.0 (SciTools#4575) Bump peter-evans/create-pull-request from 3.8.2 to 3.12.1 (SciTools#4577) adopt dependabot GHA (SciTools#4568) New tool-agnostic ASV environment management (SciTools#4571) Updated environment lockfiles (SciTools#4567) Update version to 3.3.dev0 (SciTools#4565) Reset whats new (SciTools#4563) docs: move whatsnew (SciTools#4540) Deprecate regrids (SciTools#4548) Update latest.rst (SciTools#4556) Updated environment lockfiles (SciTools#4555) Added whatsnew for SciTools#4551. (SciTools#4553) Update SciTools#4505 doctests for SciTools#4528. (SciTools#4554) minor optimisations (SciTools#4549) ...
- Loading branch information
Showing
176 changed files
with
9,592 additions
and
6,046 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,15 @@ | ||
# Reference: | ||
# - https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/keeping-your-actions-up-to-date-with-dependabot | ||
# - https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "daily" | ||
labels: | ||
- "New: Pull Request" | ||
- "Bot" |
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 |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
# the lockfile bot has made the head commit, abort the workflow. | ||
# This job can be manually overridden by running directly from the github actions panel | ||
# (known as a "workflow_dispatch") and setting the `clobber` input to "yes". | ||
- uses: actions/script@v4 | ||
- uses: actions/script@v5.1.0 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
|
@@ -71,7 +71,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
python: ['37', '38'] | ||
python: ['38'] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -108,13 +108,25 @@ jobs: | |
rm -r artifacts | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@052fc72b4198ba9fbc81b818c6e1859f747d49a8 | ||
id: cpr | ||
uses: peter-evans/create-pull-request@f22a7da129c901513876a2380e2dae9f8e145330 | ||
with: | ||
commit-message: Updated environment lockfiles | ||
committer: "Lockfile bot <[email protected]>" | ||
author: "Lockfile bot <[email protected]>" | ||
delete-branch: true | ||
branch: auto-update-lockfiles | ||
title: Update CI environment lockfiles | ||
title: "[iris.ci] environment lockfiles auto-update" | ||
body: | | ||
Lockfiles updated to the latest resolvable environment. | ||
labels: | | ||
New: Pull Request | ||
Bot | ||
- name: Check Pull Request | ||
if: steps.cpr.outputs.pull-request-number != '' | ||
run: | | ||
echo "pull-request #${{ steps.cpr.outputs.pull-request-number }}" | ||
echo "pull-request URL ${{ steps.cpr.outputs.pull-request-url }}" | ||
echo "pull-request operation [${{ steps.cpr.outputs.pull-request-operation }}]" | ||
echo "pull-request head SHA ${{ steps.cpr.outputs.pull-request-head-sha }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
version: 2 | ||
|
||
build: | ||
image: latest | ||
os: ubuntu-20.04 | ||
tools: | ||
python: mambaforge-4.10 | ||
|
||
conda: | ||
environment: requirements/ci/readthedocs.yml | ||
environment: requirements/ci/readthedocs.yml | ||
|
||
sphinx: | ||
configuration: docs/src/conf.py | ||
fail_on_warning: false | ||
configuration: docs/src/conf.py | ||
fail_on_warning: false | ||
|
||
python: | ||
install: | ||
- method: setuptools | ||
path: . | ||
|
||
formats: | ||
- htmlzip | ||
install: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- docs |
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.