Bump rexml from 3.2.5 to 3.3.6 #6
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
# DO NOT EDIT. | |
# This file is managed by the template repository pipeline. | |
# https://github.com/Hivebrite/git-template-repository | |
# | |
# To edit this file open a PR on the repository Hivebrite/git-template-repository | |
name: PR Actions | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- ready_for_review | |
- synchronize | |
jobs: | |
lint_title: | |
name: Lint pull request title | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' && !contains(fromJson('["skip-commit-lint"]'), github.event.pull_request.labels) | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Dependencies | |
run: rm -f package.json yarn.lock && npm install --no-package-lock --no-save @commitlint/cli @commitlint/config-conventional | |
- uses: JulienKode/[email protected] | |
with: | |
configuration-path: .github/workflows/commitlint.config.js |