mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Merge pull request #7301 from ldeluigi/master
Github: added GitHub Actions bot that fetches cards in issue comments
This commit is contained in:
commit
06a25b6d10
1 changed files with 18 additions and 0 deletions
18
.github/workflows/mtg-fetch-cards.yml
vendored
Normal file
18
.github/workflows/mtg-fetch-cards.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Mtg Card Fetch Bot
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created]
|
||||
issues:
|
||||
types: [opened]
|
||||
pull_request:
|
||||
types: [opened]
|
||||
pull_request_review:
|
||||
type: [submitted]
|
||||
|
||||
jobs:
|
||||
fetch-card-references:
|
||||
name: Fetch MTG Card
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: ldeluigi/mtg-fetch-action@v1
|
Loading…
Reference in a new issue