Da 342 add semantic versioning and changelog to data automation tools #12
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: "Different Changelog Path" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
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" | |