Files
iOS/.github
Copilot 0b235e5d74 Add release workflow for release/YYYY.M.D/* tags (#4340)
## Summary

Adds a GitHub Actions workflow that creates a GitHub release when tags
matching `release/[0-9]+.[0-9]+.[0-9]+/*` are pushed.

- Triggers on tags like `release/2026.2.2/beta1`, `release/2026.2.2/rc1`
- Validates tag is on `main` branch via `git merge-base --is-ancestor`
- Creates release with auto-generated notes
- No builds or deployments—release creation only

```yaml
on:
  push:
    tags:
      - 'release/[0-9]+.[0-9]+.[0-9]+/*'
```

## Screenshots

N/A — CI workflow change

## Link to pull request in Documentation repository

Documentation: home-assistant/companion.home-assistant#

## Any other notes

Uses `softprops/action-gh-release@v2.2.2` with pinned SHA per repo
conventions.

<!-- START COPILOT CODING AGENT TIPS -->
---

 Let Copilot coding agent [set things up for
you](https://github.com/home-assistant/iOS/issues/new?title=+Set+up+Copilot+instructions&body=Configure%20instructions%20for%20this%20repository%20as%20documented%20in%20%5BBest%20practices%20for%20Copilot%20coding%20agent%20in%20your%20repository%5D%28https://gh.io/copilot-coding-agent-tips%29%2E%0A%0A%3COnboard%20this%20repo%3E&assignees=copilot)
— coding agent works faster and does higher quality work when set up for
your repo.

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: bgoncal <5808343+bgoncal@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-02-11 11:31:55 +01:00
..