chore(deps): update actions/create-github-app-token action to v3 #128
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
| --- | |
| # GitHub Actions workflow to lint commits on pull requests of the Schrödinger's Stack repositories. | |
| # | |
| # IMPORTANT: This workflow is called by other workflows in the organization's repositories and it is centralized here | |
| # in order to be easily maintained. Because of this, please make sure you're not introducing any breaking changes when | |
| # modifying this workflow. | |
| name: "commits-checks" | |
| on: | |
| workflow_call: | |
| pull_request: | |
| jobs: | |
| commits-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check commit messages | |
| uses: opensource-nepal/commitlint@v1.3.1 |