feat: Add support for message type generation from Json schemas #41
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: Prevent Changes to Release Files | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [opened, edited, synchronize, reopened, labeled, unlabeled] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prevent file change | |
uses: xalvarez/prevent-file-change-action@v1 | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
pattern: releases/.* | |
allowNewFiles: true |