chore(deps): update dependency @types/node to v22.9.0 #ex-123 #174
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: CI | |
on: | |
pull_request: | |
# By default, a workflow only runs when a pull_request's activity type is opened, synchronize, or reopened. We | |
# explicity override here so that PR titles are re-linted when the PR text content is edited. | |
# | |
# Possible values: https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request | |
types: [opened, edited, reopened, synchronize] | |
jobs: | |
pr-lint: | |
name: Test PR Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Test Action | |
id: test-action | |
uses: ./ | |
with: | |
title-regex: "#[eE][xX]-[0-9]+" | |
on-failed-regex-fail-action: false | |
on-failed-regex-create-review: true | |
on-failed-regex-request-changes: false | |
on-failed-regex-comment: | |
"Failed regex: `%regex%`!" | |
on-succeeded-regex-dismiss-review-comment: | |
"Succeeded regex, dismissing review." | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |