Popup screenshots #745
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/gh-action-get-changed-files@2.2.2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check changed files | |
run: .github/check_for_changes | |
- uses: ouzi-dev/commit-status-updater@v1.1.0 | |
with: | |
status: ${{ env.CHANGELOG_STATUS }} | |
description: ${{ env.CHANGELOG_MESSAGE }} | |
name: "Update changelog" | |