Skip to content

New version: DiffEqBase v6.151.5 #68510

New version: DiffEqBase v6.151.5

New version: DiffEqBase v6.151.5 #68510

# This workflow updates feeds when the label `BREAKING` is applied to PRs.
name: Send breaking to Zulip
on:
pull_request:
types: [ labeled ]
permissions:
contents: read
jobs:
update-zulip-breaking:
if: ${{ (github.event.label.name == 'BREAKING' || github.event.label.name == 'zulip test') && github.repository == github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@f2258781c657ad9b4b88072c5eeaf9ec8c370874 # v2.0.0
with:
version: 1.6.2
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3.3.0
- name: Collect Zulip info
id: zulip
shell: julia --color=yes {0}
run: |
include(joinpath(ENV["GITHUB_WORKSPACE"], ".ci", "parse_env.jl"))
text, pr_url = parse_env(ENV)
using Pkg
Pkg.activate(mktempdir())
Pkg.add(name="GitHubActions", version="0.1")
using GitHubActions
content = string("**", ENV["PR_NAME"], "**\n\n", text)
set_output("content", content)
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_NUMBER: ${{ github.event.number }}
PR_BODY: ${{ github.event.pull_request.body }}
- name: Update Zulip feed
uses: zulip/github-actions-zulip/send-message@e4c8f27c732ba9bd98ac6be0583096dea82feea5
with:
api-key: ${{ secrets.ZULIP_API_KEY }}
email: 'general-registry-announcer-bot@julialang.zulipchat.com'
organization-url: 'https://julialang.zulipchat.com'
to: 'breaking-changes-feed'
type: 'stream'
topic: 'Package breaking updates'
content: ${{ steps.zulip.outputs.content }}