chore: remove efb and adirs command #781
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: Verify Changelog | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
- labeled | |
- unlabeled | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.draft == false && github.repository_owner == 'flybywiresim' }} # Prevent running on forks | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Verify changelog | |
uses: Zomzog/[email protected] | |
with: | |
fileName: CHANGELOG.md | |
checkNotification: Simple | |
noChangelogLabel: skip changelog | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |