Use pre-release tag for protoreflect/v2 instead of commit-hash pseudo-tag #663
Workflow file for this run
This file contains 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: Verify Changelog | |
on: | |
pull_request: | |
types: | |
- opened | |
push: | |
branches: | |
- "release/**" | |
- "next/**" | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' || startsWith(github.head_ref, 'release/') || startsWith(github.head_ref, 'next/')}} | |
steps: | |
- name: Checkout repository code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Check changelog is modified | |
run: bash ./make/buf/scripts/verifychangelog.bash |