new-manifest-detected #1211
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
# This workflow runs when a new manifest is detected by cron | |
name: New Manifest Detected | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: [new-manifest-detected] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: pnpm | |
- name: Install | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: Generate new D2AI information | |
run: pnpm generate-data | |
- name: porcelain check | |
uses: dorny/paths-filter@v3 | |
id: D2AI-data | |
with: | |
base: HEAD | |
filters: | | |
changed: | |
- '**' | |
- name: Create Pull Request | |
if: steps.D2AI-data.outputs.changed == 'true' | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.PAT }} | |
commit-message: D2AI - Update All - Manifest v${{ github.event.client_payload.config.env.MANIFEST_VERSION }} | |
committer: D2AI Bot <destinyitemmanager@gmail.com> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
title: '[D2AI] Manifest Update' | |
body: | | |
Manifest Update | |
- Update All - Manifest v${{ github.event.client_payload.config.env.MANIFEST_VERSION }} | |
- Auto-generated by [D2AI][1] | |
[1]: https://github.com/DestinyItemManager/d2-additional-info | |
branch: d2ai-manifest-v${{ github.event.client_payload.config.env.MANIFEST_VERSION }} |