Skip to content

repodata_patching

repodata_patching #138

name: repodata_patching
on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch: null
jobs:
repodata_patching:
runs-on: ubuntu-latest
steps:
- name: Prevent multiple jobs running in parallel
id: conversion_lock
uses: beckermr/turnstyle-python@d50fd7e1de14639af00d8dc8e0f60176a99153d9 # v2
with:
abort-after-seconds: 3
poll-interval-seconds: 2
github-token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
# outcome is evaluated before continue-on-error above
if: steps.conversion_lock.outcome == 'success'
- uses: conda-incubator/setup-miniconda@a4260408e20b96e80095f42ff7f1a15b27dd94ca # v2
if: steps.conversion_lock.outcome == 'success'
with:
activate-environment: cf
environment-file: environment.yml
auto-activate-base: true
miniforge-version: latest
miniforge-variant: Mambaforge
- name: Generate token
if: steps.conversion_lock.outcome == 'success'
id: generate_token
uses: actions/create-github-app-token@a0de6af83968303c8c955486bf9739a57d23c7f1 # v1
with:
app-id: ${{ secrets.CF_CURATOR_APP_ID }}
private-key: ${{ secrets.CF_CURATOR_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
- name: patch repodata
if: steps.conversion_lock.outcome == 'success'
shell: bash -l {0}
run: |
conda activate cf
git config --global user.email "79913779+conda-forge-curator[bot]@users.noreply.github.com"
git config --global user.name "conda-forge-curator[bot]"
git config --global pull.rebase false
python update_repodata_patches.py
env:
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}