list files
This commit is contained in:
parent
a7e200ef11
commit
e515100f8c
1 changed files with 9 additions and 0 deletions
9
.github/workflows/block-merge.yml
vendored
9
.github/workflows/block-merge.yml
vendored
|
@ -24,6 +24,15 @@ jobs:
|
||||||
files: |
|
files: |
|
||||||
.changeset/**/*.md
|
.changeset/**/*.md
|
||||||
|
|
||||||
|
- name: Check if any changesets contain minor changes
|
||||||
|
run: |
|
||||||
|
echo "Listing changed files..."
|
||||||
|
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
|
||||||
|
echo "$file was changed"
|
||||||
|
if grep -q "'astro': minor" "$file"; then
|
||||||
|
# Some Actions
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
- name: Send PR review
|
- name: Send PR review
|
||||||
run: | # approve the pull request
|
run: | # approve the pull request
|
||||||
|
|
Loading…
Add table
Reference in a new issue