-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce a workflow that checks for changelog entries
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: INTERNAL | ||
body: Introduce a workflow that checks for changelog entries | ||
time: 2024-07-10T17:27:18.567311+02:00 | ||
custom: | ||
Issue: "1759" | ||
Repository: terraform-ls |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Checks if a file has been committed under the .changes/unreleased directory | ||
# | ||
# Skip PRs labeled with 'dependencies' | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- pre-release | ||
|
||
name: Check if changelog entry exists | ||
|
||
jobs: | ||
changelog_existence: | ||
name: Check if changelog entry exists | ||
if: "!contains(github.event.pull_request.labels.*.name, 'dependencies')" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check if changelog file was added | ||
# https://github.com/marketplace/actions/paths-changes-filter | ||
# For each filter, it sets output variable named by the filter to the text: | ||
# 'true' - if any of changed files matches any of filter rules | ||
# 'false' - if none of changed files matches any of filter rules | ||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | ||
id: changelog_check | ||
with: | ||
filters: | | ||
exists: | ||
- added|modified: '.changes/unreleased/**.yaml' | ||
- name: Fail job if changelog entry is missing and required | ||
if: steps.changelog_check.outputs.exists == 'false' | ||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | ||
with: | ||
script: core.setFailed('Changelog entry required to merge.') |