feat: allow using remote list as a scale source. #1729
This file contains hidden or 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
# Action to check conventional commits on OAT pull requests | |
name: Conventional commits check | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
pr-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git fetch --unshallow --tags | |
- name: Check commit | |
if: always() | |
uses: oat-sa/conventional-commit-action@v0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |