Skip to content

repodata_patching

repodata_patching #174

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@8f1ceb87dabbbbebe42257b85c368f6110bb9170 # v2
with:
abort-after-seconds: 3
poll-interval-seconds: 2
github-token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# outcome is evaluated before continue-on-error above
if: steps.conversion_lock.outcome == 'success'
- uses: conda-incubator/setup-miniconda@505e6394dae86d6a5c7fbb6e3fb8938e3e863830 # v3.1.1
if: steps.conversion_lock.outcome == 'success'
with:
activate-environment: cf
environment-file: environment.yml
auto-activate-base: true
miniforge-version: latest
- name: Generate token
if: steps.conversion_lock.outcome == 'success'
id: generate_token
uses: actions/create-github-app-token@136412a57a7081aa63c935a2cc2918f76c34f514 # 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 }}