-
Notifications
You must be signed in to change notification settings - Fork 4
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
5 changed files
with
62 additions
and
11 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,33 @@ | ||
name: TagBot | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
workflow_dispatch: | ||
inputs: | ||
lookback: | ||
default: "3" | ||
permissions: | ||
actions: read | ||
checks: read | ||
contents: write | ||
deployments: read | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
pull-requests: read | ||
repository-projects: read | ||
security-events: read | ||
statuses: read | ||
jobs: | ||
TagBot: | ||
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: JuliaRegistries/TagBot@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key | ||
ssh: ${{ secrets.DOCUMENTER_KEY }} | ||
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }} |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ uuid = "c92a0612-66bb-11e9-0491-518d0d864356" | |
keywords = ["GMD", "EMP", "simulation", "analysis", "mitigation", "optimization"] | ||
authors = ["Arthur Barnes <[email protected]>, Adam Mate <[email protected]>"] | ||
repo = "https://github.com/lanl-ansi/PowerModelsGMD.jl" | ||
version = "0.5.0" | ||
version = "1.0.0" | ||
|
||
[deps] | ||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | ||
|
@@ -23,14 +23,25 @@ PowerModels = "c36e90e8-916a-50a6-bd94-075b64ef4655" | |
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | ||
|
||
# Ipopt, Juniper, MathOptInterface | ||
[compat] | ||
CSV = "~0.10" | ||
Coverage = "~1.6" | ||
DataFrames = "~1.7" | ||
FFTW = "~1.8" | ||
Ipopt = "~1.6" | ||
Juniper = "~0.9" | ||
MathOptInterface = "~1.31" | ||
StatsBase = "~0.34" | ||
LinearAlgebra = "~1.10, ~1.11" | ||
SparseArrays = "~1.10, ~1.11" | ||
InfrastructureModels = "~0.7" | ||
JSON = "~0.21" | ||
JuMP = "~1.9" | ||
Memento = "~1.0, ~1.1, ~1.2, ~1.3, ~1.4" | ||
PowerModels = "~0.19" | ||
# PowerModelsRestoration = "~0.7" | ||
julia = "~1.6, ~1.7, ~1.8, ~1.10" | ||
julia = "~1.6, ~1.7, ~1.8, ~1.10, ~1.11" | ||
|
||
[extras] | ||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | ||
|
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 @@ | ||
# Global YAML [lower on hierarchy] | ||
coverage: | ||
round: down | ||
precision: 5 | ||
|
||
# Repository YAML [higher on hierarchy] | ||
coverage: | ||
round: up | ||
range: 0..10 | ||
|
||
# Used in Codecov after updating | ||
coverage: | ||
round: up | ||
range: 0..10 | ||
precision: 5 |