renovatebot-pre-commit-hooks/.github/workflows/build.yml
renovate[bot] ca9eff1051
chore(deps): update mikefarah/yq action to v4.34.1 (#1100)
| datasource  | package      | from    | to      |
| ----------- | ------------ | ------- | ------- |
| github-tags | mikefarah/yq | v4.33.3 | v4.34.1 |

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-23 04:36:42 +00:00

71 lines
1.9 KiB
YAML

name: build
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Set up Python
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b # v4.6.0
with:
python-version-file: .python-version
cache: pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run pre-commit
run: >-
pre-commit try-repo --all-files
--ref="${GITHUB_SHA}"
"${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}"
release:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [test]
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Get Renovate version
id: get-renovate-version
uses: mikefarah/yq@5ef537f3fd1a9437aa3ee44c32c6459a126efdc4 # v4.34.1
with:
cmd: >-
yq eval
'.[]|select(.id=="renovate-config-validator")|.additional_dependencies[0]|split("@").[1]'
.pre-commit-hooks.yaml
- name: Create release
run: |
if ! gh release view "${TAG}" >/dev/null; then
gh release create "${TAG}" \
--notes "See https://github.com/renovatebot/renovate/releases/tag/${TAG} for more changes" \
--target "${TARGET}" \
--title "${TAG}"
else
echo 'release already exists'
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ steps.get-renovate-version.outputs.result }}
TARGET: ${{ github.sha }}