chore(deps): bump ubuntu from ff0b513
to 723ad80
#30
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: pre-commit | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
jobs: | |
lint-pr-title: | |
name: Validate PR titles | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'pull[bot]' }} | |
steps: | |
- run: echo "$github.actor" | |
- uses: amannn/action-semantic-pull-request@v5.4.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: '3.8' | |
- run: pip install 'virtualenv<20.11.0' | |
- uses: pre-commit/action@v3.0.1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |