File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
- # This action periodically runs Pkg.instantiate() and Pkg.resolve() on the
2
- # top-level environment. If this leads to a change in the Manifest.toml file,
3
- # it will open a PR to update the Manifest.toml file. This ensures that the
4
- # version of the Manifest in the repository is consistent with the version of the
5
- # Manifest used by the CI system (i.e. during the actual docs generation).
1
+ # This action runs Pkg.instantiate() and Pkg.resolve() every time the master
2
+ # branch is pushed to. If this leads to a change in the Manifest.toml file, it
3
+ # will open a PR to update the Manifest.toml file. This ensures that the
4
+ # contents of the Manifest in the repository are consistent with the contents
5
+ # of the Manifest used by the CI system (i.e. during the actual docs
6
+ # generation).
6
7
#
7
8
# See https://github.com/TuringLang/docs/issues/518 for motivation.
8
9
@@ -36,11 +37,12 @@ jobs:
36
37
run : |
37
38
julia -e 'using Pkg; Pkg.instantiate(); Pkg.resolve()'
38
39
39
- - name : Create a PR with suggested changes
40
+ - name : Open PR
40
41
id : create_pr
41
42
uses : peter-evans/create-pull-request@v6
42
43
with :
43
44
branch : resolve-manifest
45
+ add-paths : Manifest.toml
44
46
commit-message : " Update Manifest.toml"
45
47
body : " This PR is automatically generated by the `resolve_manifest.yml` GitHub Action."
46
48
title : " Update Manifest.toml to match CI environment"
You can’t perform that action at this time.
0 commit comments