Test for changelog enforcer #4
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: "Project_1 Workflow" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
paths: | |
- project_1/** | |
jobs: | |
# Enforces the update of a changelog file on every pull request | |
Changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dangoslen/changelog-enforcer@v2 | |
with: | |
changeLogPath: 'project_1/changelog.md' | |
Job_1: | |
runs-on: ubuntu-latest | |
needs: Changelog | |
steps: | |
- name: Making Mock Job for Project_1 | |
run: echo "test" | |