Separate dts generator for ace-code and ace-builds #60
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: Comments for ensuring backward compatibility | |
on: | |
pull_request_target: | |
paths: | |
- 'ace.d.ts' | |
- 'ace-modes.d.ts' | |
- 'ace-extensions.d.ts' | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment on PR | |
uses: peter-evans/create-or-update-comment@v1 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
One of the public type files has been updated, plase make sure there are no backwards incompatible changes done in the PR. | |
token: ${{ secrets.GITHUB_TOKEN }} |