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
but according to the original repo, it seems that now the file needs to be like this:
name: CompatHelperon:
schedule:
- cron: 0 0 * * *workflow_dispatch:
permissions:
contents: writepull-requests: writejobs:
CompatHelper:
runs-on: ubuntu-lateststeps:
- name: Check if Julia is already available in the PATHid: julia_in_pathrun: which juliacontinue-on-error: true
- name: Install Julia, but only if it is not already available in the PATHuses: julia-actions/setup-julia@v1with:
version: '1'arch: ${{ runner.arch }}if: steps.julia_in_path.outcome != 'success'
- name: "Add the General registry via Git"run: | import Pkg ENV["JULIA_PKG_SERVER"] = "" Pkg.Registry.add("General")shell: julia --color=yes {0}
- name: "Install CompatHelper"run: | import Pkg name = "CompatHelper" uuid = "aa819f21-2bde-4658-8897-bab36330d9b7" version = "3" Pkg.add(; name, uuid, version)shell: julia --color=yes {0}
- name: "Run CompatHelper"run: | import CompatHelper CompatHelper.main()shell: julia --color=yes {0}env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}# COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
Additionally, I noticed that github now implicitly prohibits bots from creating PRs, so I think it is nice to emit some log messages for manually enabling that.
The text was updated successfully, but these errors were encountered:
Currently, CompatHelper plugin generates the following CompatHelper.yml:
but according to the original repo, it seems that now the file needs to be like this:
Additionally, I noticed that github now implicitly prohibits bots from creating PRs, so I think it is nice to emit some log messages for manually enabling that.
The text was updated successfully, but these errors were encountered: