This repository was archived by the owner on Sep 10, 2025. It is now read-only.
On Git reference created #681
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: On Git reference created | |
on: create | |
jobs: | |
on-release-branch-created: | |
if: startsWith(github.ref_name, 'release-') | |
name: On release branch created | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
- name: Open release PR | |
run: scripts/open-release-pr.sh "${{ github.ref_name }}" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |