dominiontabs/.github/workflows/make_card_db_pr.yml

44 lines
1.4 KiB
YAML

name: Make Card DB PR
on:
workflow_run:
workflows: ["Compile Card DB"]
types:
-completed
jobs:
make_pr:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v2
- uses: actions/github-script@v3.1.0
with:
script: |
var artifacts = await github.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{github.event.workflow_run.id }},
});
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
return artifact.name == "card_db"
})[0];
var download = await github.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
archive_format: 'zip',
});
var fs = require('fs');
fs.writeFileSync('${{github.workspace}}/card_db.zip', Buffer.from(download.data));
- run: unzip -d src/domdiv/card_db card_db.zip
- run: rm -f card_db.zip
- name: Make PR
uses: peter-evans/create-pull-request@v3
with:
body: |
Auto-generate package card DB to from source card DB
delete-branch: true
reviewers: sumpfork
assignees: sumpfork