mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](08c6903cd8...1af3b93b68)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
31 lines
1,000 B
YAML
31 lines
1,000 B
YAML
name: Update Changelog
|
|
|
|
run-name: Creates PR for updating the CHANGELOG.md
|
|
|
|
on:
|
|
release:
|
|
types: [published, unpublished, created, edited, deleted, released]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
generate_changelog:
|
|
name: Generate changelog
|
|
permissions:
|
|
contents: write # for peter-evans/create-pull-request to create branch
|
|
pull-requests: write # for peter-evans/create-pull-request to create a PR
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
with:
|
|
ref: main
|
|
fetch-depth: 0
|
|
- run: |
|
|
python ./scripts/gen-changelog.py
|
|
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
|
|
with:
|
|
title: 'docs: update CHANGELOG.md for ${{ github.ref_name }}'
|
|
commit-message: 'docs: update CHANGELOG.md for ${{ github.ref_name }}'
|
|
branch: create-pull-request/changelog
|
|
signoff: true
|