CI - Single Dependabot PR #141
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: CI - Single Dependabot PR | |
on: | |
schedule: | |
# At 8:30 every Wednesday (6:30 UTC) | |
# Dependabot runs once a week (every Monday) (pip) | |
# and every day (GH Actions) between 7:00 and 7:30 (5:00-5:30 UTC) | |
- cron: "30 6 * * 3" | |
jobs: | |
create-collected-pr: | |
name: Single dependabot PR | |
if: github.repository_owner == 'emmo-repo' | |
runs-on: ubuntu-latest | |
env: | |
DEPENDABOT_BRANCH: ci/dependabot-updates | |
GIT_USER_NAME: CIF-ontology Team | |
GIT_USER_EMAIL: "CIF-ontology@emmo.info" | |
DEFAULT_REPO_BRANCH: main | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.DEFAULT_REPO_BRANCH }} | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install `pre-commit` and dependencies | |
run: | | |
python -m pip install -U pip | |
pip install -U setuptools wheel | |
pip install pre-commit | |
- name: Set up git user info | |
run: | | |
git config --global user.name "${{ env.GIT_USER_NAME }}" | |
git config --global user.email "${{ env.GIT_USER_EMAIL }}" | |
- name: Reset to '${{ env.DEPENDABOT_BRANCH }}' | |
run: | | |
git fetch origin ${{ env.DEPENDABOT_BRANCH }}:${{ env.DEPENDABOT_BRANCH }} | |
git reset --hard ${{ env.DEPENDABOT_BRANCH }} | |
- name: Auto-update `pre-commit` hooks | |
run: | | |
pre-commit autoupdate | |
if [ -n "$(git status --porcelain .pre-commit-config.yaml)" ]; then | |
# Set environment variable notifying next steps that the hooks changed | |
echo "Pre-commit hooks have been updated !" | |
echo "UPDATED_PRE_COMMIT_HOOKS=true" >> $GITHUB_ENV | |
else | |
echo "No pre-commit hooks have been updated." | |
echo "UPDATED_PRE_COMMIT_HOOKS=false" >> $GITHUB_ENV | |
fi | |
- name: Possibly run `pre-commit` with updated hooks | |
if: env.UPDATED_PRE_COMMIT_HOOKS == 'true' | |
continue-on-error: true # Still create the PR if this step fails | |
run: SKIP=pylint pre-commit run --all-files | |
- name: Possibly commit changes and updates | |
if: env.UPDATED_PRE_COMMIT_HOOKS == 'true' | |
run: git commit -am "Update \`pre-commit\` hooks" | |
- name: Fetch PR body | |
id: pr_body | |
uses: chuhlomin/render-template@v1.8 | |
with: | |
template: .github/static/single_dependency_pr_body.txt | |
- name: Create PR | |
id: cpr | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.RELEASE_PAT_CWA }} | |
commit-message: New @dependabot-fueled updates | |
committer: "${{ env.GIT_USER_NAME }} <${{ env.GIT_USER_EMAIL }}>" | |
author: "${{ env.GIT_USER_NAME }} <${{ env.GIT_USER_EMAIL }}>" | |
branch: ci/update-dependencies | |
delete-branch: true | |
title: "[Auto-generated] Update dependencies" | |
body: ${{ steps.pr_body.outputs.result }} | |
labels: dependencies,github_actions | |
- name: Information | |
run: 'echo "${{ steps.cpr.outputs.pull-request-operation }} PR #${{ steps.cpr.outputs.pull-request-number }}: ${{ steps.cpr.outputs.pull-request-url }}"' |