You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yaml
+28-15Lines changed: 28 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
name: "Update SPEC 0 dependencies"
3
3
description: "Update the lower bounds of Python dependencies covered by the Scientific Python SPEC 0 support schedule"
4
4
author: Scientific Python Developers
5
-
6
5
inputs:
7
6
target_branch:
8
7
description: "Target branch for the pull request"
@@ -15,7 +14,7 @@ inputs:
15
14
create_pr:
16
15
description: "Whether the action should open a PR or not. Set to false for dry-run/testing."
17
16
required: true
18
-
default: true
17
+
default: "true"
19
18
commit_msg:
20
19
description: "Commit message for the commit to update the versions. by default 'Drop support for unsupported packages conform SPEC 0'. has no effect if `create_pr` is set to false"
21
20
required: false
@@ -25,39 +24,53 @@ inputs:
25
24
required: false
26
25
default: "chore: Drop support for unsupported packages conform SPEC 0"
27
26
schedule_path:
28
-
description: "Path to the schedule.json file relative to the project root. If missing, it will be downloaded from the latest release of savente93/SPEC0-schedule"
29
-
default: "schedule.json"
27
+
description: "Path to the schedule.json file relative to the project root. If not provided, the schedule bundled with the action is used."
28
+
required: false
29
+
default: ""
30
30
token:
31
-
description: "GitHub token with repo permissions to create pull requests"
32
-
required: true
33
-
31
+
description: "GitHub token with pull-requests write permission to create pull requests. Defaults to the built-in GITHUB_TOKEN."
32
+
required: false
33
+
update_all:
34
+
description: "If set, also update all non-SPEC0 dependencies to versions released within the last N years (e.g., 2)."
0 commit comments