Skip to content
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
107 changes: 107 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
name: Release

on:
pull_request_target:
types: [closed]

permissions:
contents: write
Comment on lines +3 to +8
Copy link

Copilot AI Mar 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using pull_request_target with contents: write runs in the privileged base-repo context. Even though this workflow checks out the merge commit, it’s generally safer to trigger releases from a push event on main/master (or a workflow_run from CI on main), so untrusted PR events can’t ever invoke a write-capable workflow. Consider switching the trigger to on: push and deriving the CalVer date from the merge commit metadata (or querying the merged PR via the API if you need the PR merge timestamp).

Copilot uses AI. Check for mistakes.

concurrency:
group: release-${{ github.event.pull_request.base.ref }}
cancel-in-progress: false

jobs:
release:
if: >
github.event.pull_request.merged == true &&
(github.event.pull_request.base.ref == 'main' || github.event.pull_request.base.ref == 'master')
runs-on: ubuntu-latest

steps:
- name: Check out merged commit
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: 0

- name: Fetch tags
run: git fetch --force --tags origin

- name: Determine CalVer tag
id: calver
env:
MERGE_COMMIT_SHA: ${{ github.event.pull_request.merge_commit_sha }}
MERGED_AT: ${{ github.event.pull_request.merged_at }}
run: |
set -euo pipefail

existing_tag="$(
git tag --points-at "$MERGE_COMMIT_SHA" |
grep -E '^v[0-9]{2}\.[0-9]{2}\.[0-9]{2}\.[0-9]+$' |
sort -V |
tail -n 1 || true
)"

if [ -n "$existing_tag" ]; then
tag="$existing_tag"
else
base="$(date -u -d "$MERGED_AT" +'%y.%m.%d')"
max_suffix=0

while IFS= read -r existing; do
suffix="${existing#v$base.}"
if ! printf '%s' "$suffix" | grep -Eq '^[0-9]+$'; then
continue
fi

if [ "$suffix" -gt "$max_suffix" ]; then
max_suffix="$suffix"
fi
done < <(git tag -l "v$base.*" | sort -V)

tag="v$base.$((max_suffix + 1))"
fi

echo "tag=$tag" >> "$GITHUB_OUTPUT"

- name: Create and push tag
env:
MERGE_COMMIT_SHA: ${{ github.event.pull_request.merge_commit_sha }}
TAG: ${{ steps.calver.outputs.tag }}
run: |
set -euo pipefail

if git ls-remote --exit-code --tags origin "refs/tags/$TAG" >/dev/null 2>&1; then
remote_sha="$(git rev-list -n 1 "$TAG")"
if [ "$remote_sha" = "$MERGE_COMMIT_SHA" ]; then
echo "Tag $TAG already exists on origin and points to the expected commit"
exit 0
fi

echo "Error: Tag $TAG already exists on origin but points to $remote_sha instead of $MERGE_COMMIT_SHA"
exit 1
Comment on lines +75 to +83
Copy link

Copilot AI Mar 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remote_sha is derived via git rev-list -n 1 "$TAG", which resolves the local tag ref. If a tag is created/updated on origin after the earlier git fetch --tags, this can fail (tag not present locally) or compare against stale data. Prefer extracting the commit SHA directly from git ls-remote --tags origin "refs/tags/$TAG" (handling annotated tags by selecting the ^{} line when present) so the verification is based on the remote state you just checked.

Copilot uses AI. Check for mistakes.
fi

git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag -a "$TAG" "$MERGE_COMMIT_SHA" -m "Release $TAG"
git push origin "refs/tags/$TAG"

- name: Create GitHub release
env:
GH_TOKEN: ${{ github.token }}
MERGE_COMMIT_SHA: ${{ github.event.pull_request.merge_commit_sha }}
TAG: ${{ steps.calver.outputs.tag }}
run: |
set -euo pipefail

if gh release view "$TAG" >/dev/null 2>&1; then
echo "Release $TAG already exists"
exit 0
fi

gh release create "$TAG" \
--target "$MERGE_COMMIT_SHA" \
--generate-notes \
--title "$TAG"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
- Improve identifier quoting and driver-specific schema discovery.
- Update tests to support configurable DB backends.
- Add GitHub Actions CI matrix for PHP and database drivers.
- Add automatic CalVer tagging and GitHub releases for merged PRs.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ The repository ships with:
- PHPStan static analysis
- PHP-CS-Fixer formatting checks
- GitHub Actions CI for pull requests and pushes
- Automatic `vYY.MM.DD.n` CalVer tags and GitHub releases for merged PRs to `main`/`master`

## Contributing

Expand Down