repodata_patching #128
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: 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@v1 | |
with: | |
abort-after-seconds: 3 | |
poll-interval-seconds: 2 | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: true | |
- uses: actions/checkout@v2 | |
# outcome is evaluated before continue-on-error above | |
if: steps.conversion_lock.outcome == 'success' | |
- uses: conda-incubator/setup-miniconda@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: conda-forge/github-app-token@e3ab451d57e120b956292a1fa1d21fe4ba171c36 | |
with: | |
app_id: ${{ secrets.CF_CURATOR_APP_ID }} | |
private_key: ${{ secrets.CF_CURATOR_PRIVATE_KEY }} | |
- 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 }} |