-
Notifications
You must be signed in to change notification settings - Fork 221
32 lines (27 loc) · 1.02 KB
/
CreateDocsIssue.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# The TuringLang/docs repository needs to be updated when a new version of
# Turing.jl is released.
# This action creates an issue in the TuringLang/docs repository to remind
# someone to do it.
name: Create issue to update TuringLang/docs
on:
release:
types: [published]
# Delete this before opening PR
push:
branches:
- pysm/version-bump-gha
jobs:
create_issue:
runs-on: ubuntu-latest
steps:
- name: Create issue
uses: dacbd/create-issue-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: Update Turing.jl version to ${{ github.ref_name }}
owner: TuringLang
repo: docs
body: |
A new version of Turing.jl has been released.
If this is a patch release (e.g. x.y.z -> x.y.z+1), you only need to update the `Manifest.toml` file in the repository.
If this is a new major/minor version (e.g. x.y.z -> x.y+1.0), you need to also update the version numbers in `_quarto.yml` and `Project.toml`.