Files
alire-index-community/.github/workflows/diff-release.yml
T
Alejandro R. Mosteo 41424df44d Remove hard-coded repo
2026-05-22 17:51:39 +02:00

38 lines
799 B
YAML

# Please read the TESTING file before modifying this file
# Show differences between the submitted manifest and the previous
# release of the same crate, to enable easier catching of problems
name: Diff release
on:
pull_request:
paths:
- 'index/**.toml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
DIFF:
runs-on: ubuntu-latest
steps:
- name: Check out repos
uses: ./.github/actions/checkout-repos
- name: Set up `alr`
uses: ./.github/actions/setup-alr
with:
toolchain: --disable-assistant # No compiler needed
- name: <<DIFF RELEASES>>
run: ${{env.CHECKS_REPO}}/scripts/diff-release.sh || true # No deal breaker if failed
shell: bash