Skip to content

Enhance the pull checks and allow updates in the changelog helper #2465

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Maintainance

- Allow automatic updates in the changlog helper dependencies by dependabot
8 changes: 7 additions & 1 deletion .github/workflows/pull-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ jobs:
echo "In total that are $totalcnt files."
#
echo "Filtering out automatically updatable files"
cat /tmp/changed-files-in-pr | grep -v '^package-lock.json$' | grep -v '^composer.lock$' | grep -v '^\.github/workflows/' | grep -v '^docs/Gemfile.lock' | tee /tmp/relevant-files-in-pr
cat /tmp/changed-files-in-pr | \
grep -v '^package-lock.json$' | \
grep -v '^composer.lock$' | \
grep -v '^\.github/workflows/' | \
grep -v '^docs/Gemfile.lock' | \
grep -v '^\.helpers/changelog/Pipfile.lock' | \
tee /tmp/relevant-files-in-pr
cnt="$(cat /tmp/relevant-files-in-pr | wc -l)"
echo "That are $cnt files relevant."
echo "num=$cnt" >> $GITHUB_OUTPUT
Expand Down
Loading