chore(deps): update actions/upload-artifact action to v4.4.3 #471
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
--- | |
# Check CHANGELOG.md file updated for every pull request | |
name: Changelog Check | |
on: | |
pull_request: | |
paths-ignore: | |
- "README.md" | |
- "CHANGELOG.md" | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
jobs: | |
changelog: | |
name: Changelog Update Check | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "🚀 Job automatically triggered by ${{ github.event_name }}" | |
- run: echo "🐧 Job running on ${{ runner.os }} server" | |
- run: echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository" | |
# Git Checkout | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
token: "${{ secrets.PAT || secrets.GITHUB_TOKEN }}" | |
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner." | |
# Changelog Enforcer | |
- name: Changelog Enforcer | |
uses: dangoslen/changelog-enforcer@v3 | |
with: | |
changeLogPath: "CHANGELOG.md" | |
skipLabels: "skip-changelog-check" | |
# Summary and status | |
- run: echo "🎨 Changelog Enforcer quality checks completed" | |
- run: echo "🍏 Job status is ${{ job.status }}." |