Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

pkg-update

pkg-update #237

Workflow file for this run

name: pkg-update
on:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
- uses: actions/checkout@v2
- name: Update Manifest.toml
run: julia --project=. -e "import Pkg; Pkg.update()"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update */Manifest.toml
title: '[AUTO] Update */Manifest.toml'
labels: no changelog
branch: create-pull-request/pkg-update
- name: Check output environment variable
run: echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}"