Show notice in Course Editor to focus on Course Outline block or Insert one if block does not exist for first time users #2387
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: Changelogger checks | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, labeled, unlabeled] | |
branches-ignore: | |
- 'release/**' | |
- 'feature/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
changelogger_used: | |
if: ${{ !contains( github.event.pull_request.labels.*.name, 'No Changelog') }} | |
name: Changelogger used | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/deepen-to-merge-base | |
- uses: ./.github/actions/install-php | |
- name: Check change files are touched for touched projects | |
env: | |
BASE: ${{ github.event.pull_request.base.sha }} | |
HEAD: ${{ github.event.pull_request.head.sha }} | |
run: ./scripts/check-changelogger-use.php --debug "$BASE" "$HEAD" |