ci: run ci with graphics (remove -nographics) #2974
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
# this workflow checks CHANGELOG.md & CHANGELOG-SNAPSHOTS.md is updated correctly | |
# to skip this check, include `NO-CHANGELOG` for CHANGELOG.md | |
# and `NO-CHANGELOG-PRERELEASE` for CHANGELOG-PRERELEASE.md in tags of PR. | |
# also, this action ignores `dependencies` pull requests (expected to be generated by dependabot) | |
name: CHANGELOG check | |
on: | |
pull_request: | |
branches: [ master, master-* ] | |
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
releasenote-check: | |
if: ${{ ! github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
env: | |
NO_CHANGELOG: ${{ | |
contains(github.event.pull_request.labels.*.name, 'NO-CHANGELOG') | |
|| contains(github.event.pull_request.labels.*.name, 'documentation') | |
|| contains(github.event.pull_request.labels.*.name, 'localization') | |
|| contains(github.event.pull_request.labels.*.name, 'ci') | |
|| contains(github.event.pull_request.labels.*.name, 'refactor') | |
|| '' }} | |
SNAPSHOT_ONLY: ${{ contains(github.event.pull_request.labels.*.name, 'SNAPSHOT-ONLY') || '' }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Fetch pull_request info | |
env: | |
GH_REPO: ${{ github.repositoryUrl }} | |
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
PR_NUM: ${{ github.event.number }} | |
run: | | |
gh pr view $PR_NUM --json=files | jq --raw-output '.files[].path' > files.txt | |
- name: Changelog check for CHANGELOG.md | |
if: always() && !(env.NO_CHANGELOG || env.SNAPSHOT_ONLY) | |
run: | | |
if ! grep -e '^CHANGELOG.md$' < files.txt > /dev/null; then | |
echo "::error::master branch is not ready for major release" | |
exit 1 | |
fi | |
- name: Changelog check for CHANGELOG-PRERELEASE.md | |
if: always() && !env.NO_CHANGELOG | |
run: | | |
if ! grep -e '^CHANGELOG-PRERELEASE.md' < files.txt > /dev/null; then | |
echo "::error::CHANGELOG-PRERELEASE.md is not updated!" | |
exit 1 | |
fi |