Skip to content

Commit

Permalink
Update check-merge action (withastro#9682)
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re authored Jan 12, 2024
1 parent 091097e commit ff3f9a5
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/check-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,26 @@ jobs:
files: |
.changeset/**/*.md
- name: Check if any changesets contain minor changes
id: minor
- name: Check if any changesets contain minor or major changes
id: check
if: steps.blocked.outputs.result != 'true'
run: |
echo "Checking for changesets marked as minor"
echo "Checking for changesets marked as minor or major"
echo "found=false" >> $GITHUB_OUTPUT
regex="[\"']astro[\"']: (minor|major)"
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if grep -q "'astro': minor" "$file"; then
echo "found=true" >> $GITHUB_OUTPUT
echo "$file has a minor release tag"
fi
if [[ $(cat $file) =~ $regex ]]; then
version="${BASH_REMATCH[1]}"
echo "version=$version" >> $GITHUB_OUTPUT
echo "found=true" >> $GITHUB_OUTPUT
echo "$file has a $version release tag"
fi
done
- name: Add label
uses: actions/github-script@v6
if: steps.minor.outputs.found == 'true'
if: steps.check.outputs.found == 'true'
env:
issue_number: ${{ github.event.number }}
with:
Expand All @@ -69,12 +73,12 @@ jobs:
issue_number: process.env.issue_number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['semver: minor']
labels: ['semver: ${{ steps.check.outputs.version }}']
});
- name: Change PR Status
uses: actions/github-script@v6
if: steps.minor.outputs.found == 'true'
if: steps.check.outputs.found == 'true'
env:
issue_number: ${{ github.event.number }}
with:
Expand All @@ -84,5 +88,5 @@ jobs:
repo: context.repo.repo,
pull_number: process.env.issue_number,
event: 'REQUEST_CHANGES',
body: 'This PR is blocked because it contains a `minor` changeset. A reviewer will merge this at the next release if approved.'
body: 'This PR is blocked because it contains a `${{ steps.check.outputs.version }}` changeset. A reviewer will merge this at the next release if approved.'
});

0 comments on commit ff3f9a5

Please sign in to comment.