Add border decorations #661
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: changelog | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
name: "Check CHANGELOG" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install --no-install-recommends jq | |
- uses: lots0logs/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check changed files | |
run: .github/check_for_changes | |
- uses: ouzi-dev/[email protected] | |
with: | |
status: ${{ env.CHANGELOG_STATUS }} | |
description: ${{ env.CHANGELOG_MESSAGE }} | |
name: "Update changelog" | |