|
|
|
|
@ -8,19 +8,22 @@ jobs: |
|
|
|
|
check: |
|
|
|
|
name: Check for updates |
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
if: github.repository == 'ohmyzsh/ohmyzsh' |
|
|
|
|
steps: |
|
|
|
|
- name: Checkout |
|
|
|
|
if: github.repository == 'ohmyzsh/ohmyzsh' |
|
|
|
|
uses: actions/checkout@v4 |
|
|
|
|
- name: Authenticate as @ohmyzsh |
|
|
|
|
id: generate_token |
|
|
|
|
uses: ohmyzsh/github-app-token@v2 |
|
|
|
|
with: |
|
|
|
|
app_id: ${{ secrets.OHMYZSH_APP_ID }} |
|
|
|
|
private_key: ${{ secrets.OHMYZSH_APP_PRIVATE_KEY }} |
|
|
|
|
- name: Process dependencies |
|
|
|
|
env: |
|
|
|
|
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} |
|
|
|
|
TMP_DIR: ${{ env.RUNNER_TEMP }} |
|
|
|
|
GH_TOKEN: ${{ steps.generate_token.outputs.token }} |
|
|
|
|
GIT_APP_NAME: ohmyzsh[bot] |
|
|
|
|
GIT_APP_EMAIL: 54982679+ohmyzsh[bot]@users.noreply.github.com |
|
|
|
|
TMP_DIR: ${{ runner.temp }} |
|
|
|
|
run: | |
|
|
|
|
gh auth login --with-token <<< "${GITHUB_TOKEN}" |
|
|
|
|
pip install -r .github/workflows/dependencies/requirements.txt |
|
|
|
|
python3 .github/workflows/dependencies/updater.py |
|
|
|
|
|